aboutsummaryrefslogtreecommitdiff
path: root/fs/ceph/auth.h
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-05-25 15:39:06 -0700
committerSage Weil <sage@newdream.net>2010-05-29 09:12:39 -0700
commita41359fa355e7b450c610ed8e913d5d75c3c9c3b (patch)
tree6dc6681f4350f0888ddcb55b5a21326069c200b2 /fs/ceph/auth.h
parent09c4d6a7d40dd26c1b35674c582382b7ea551368 (diff)
ceph: renew auth tickets before they expire
We were only requesting renewal after our tickets expire; do so before that. Most of the low-level logic for this was already there; just use it. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/auth.h')
-rw-r--r--fs/ceph/auth.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/ceph/auth.h b/fs/ceph/auth.h
index 4429a707c02..d38a2fb4a13 100644
--- a/fs/ceph/auth.h
+++ b/fs/ceph/auth.h
@@ -24,6 +24,12 @@ struct ceph_auth_client_ops {
int (*is_authenticated)(struct ceph_auth_client *ac);
/*
+ * true if we should (re)authenticate, e.g., when our tickets
+ * are getting old and crusty.
+ */
+ int (*should_authenticate)(struct ceph_auth_client *ac);
+
+ /*
* build requests and process replies during monitor
* handshake. if handle_reply returns -EAGAIN, we build
* another request.