]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - net/ceph/auth.c
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / net / ceph / auth.c
index c822b3ae1bd37b2ca9e4708b3d1ed6b7dd66f6c3..48bb8d95195b1df91d3f34d20d815d7021e10693 100644 (file)
@@ -315,13 +315,13 @@ int ceph_auth_update_authorizer(struct ceph_auth_client *ac,
 EXPORT_SYMBOL(ceph_auth_update_authorizer);
 
 int ceph_auth_verify_authorizer_reply(struct ceph_auth_client *ac,
-                                     struct ceph_authorizer *a, size_t len)
+                                     struct ceph_authorizer *a)
 {
        int ret = 0;
 
        mutex_lock(&ac->mutex);
        if (ac->ops && ac->ops->verify_authorizer_reply)
-               ret = ac->ops->verify_authorizer_reply(ac, a, len);
+               ret = ac->ops->verify_authorizer_reply(ac, a);
        mutex_unlock(&ac->mutex);
        return ret;
 }