aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ceph/auth_none.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ceph/auth_none.c b/net/ceph/auth_none.c
index 925ca583c09c..8c93fa8d81bc 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)
39 return xi->starting; 39 return xi->starting;
40} 40}
41 41
42static int build_request(struct ceph_auth_client *ac, void *buf, void *end)
43{
44 return 0;
45}
46
42/* 47/*
43 * the generic auth code decode the global_id, and we carry no actual 48 * the generic auth code decode the global_id, and we carry no actual
44 * authenticate state, so nothing happens here. 49 * authenticate state, so nothing happens here.
@@ -106,6 +111,7 @@ static const struct ceph_auth_client_ops ceph_auth_none_ops = {
106 .destroy = destroy, 111 .destroy = destroy,
107 .is_authenticated = is_authenticated, 112 .is_authenticated = is_authenticated,
108 .should_authenticate = should_authenticate, 113 .should_authenticate = should_authenticate,
114 .build_request = build_request,
109 .handle_reply = handle_reply, 115 .handle_reply = handle_reply,
110 .create_authorizer = ceph_auth_none_create_authorizer, 116 .create_authorizer = ceph_auth_none_create_authorizer,
111 .destroy_authorizer = ceph_auth_none_destroy_authorizer, 117 .destroy_authorizer = ceph_auth_none_destroy_authorizer,