X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=net%2Fceph%2Fauth_none.c;h=8c93fa8d81bc45b2d4bf1e9e1fd1eb3b96e3de53;hb=c55244137306b626bc64023fd7160985443205a7;hp=925ca583c09c8eae2fbaebbd73603e9194132f97;hpb=d14b7a419a664cd7c1c585c9e7fffee9e9051d53;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git diff --git a/net/ceph/auth_none.c b/net/ceph/auth_none.c index 925ca58..8c93fa8 100644 --- a/net/ceph/auth_none.c +++ b/net/ceph/auth_none.c @@ -39,6 +39,11 @@ static int should_authenticate(struct ceph_auth_client *ac) return xi->starting; } +static int build_request(struct ceph_auth_client *ac, void *buf, void *end) +{ + return 0; +} + /* * the generic auth code decode the global_id, and we carry no actual * authenticate state, so nothing happens here. @@ -106,6 +111,7 @@ static const struct ceph_auth_client_ops ceph_auth_none_ops = { .destroy = destroy, .is_authenticated = is_authenticated, .should_authenticate = should_authenticate, + .build_request = build_request, .handle_reply = handle_reply, .create_authorizer = ceph_auth_none_create_authorizer, .destroy_authorizer = ceph_auth_none_destroy_authorizer,