VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Ilya Dryomov <idryomov@gmail.com> 2021-06-21 11:53:38 +0200 committer: Ilya Dryomov <idryomov@gmail.com> 2021-06-24 21:03:16 +0200 commit: 3c0d0894320cc517fda657c69939cd0313d0b4e2 parent: 7a971e2c0767b6fc9a77c4108eceff0509c61cdb
Commit Summary:
libceph: don't pass result into ac->ops->handle_reply()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/include/linux/ceph/auth.h b/include/linux/ceph/auth.h
index 71b5d481c653..39425e2f7cb2 100644
--- a/include/linux/ceph/auth.h
+++ b/include/linux/ceph/auth.h
@@ -50,7 +50,7 @@ struct ceph_auth_client_ops {
 	 * another request.
 	 */
 	int (*build_request)(struct ceph_auth_client *ac, void *buf, void *end);
-	int (*handle_reply)(struct ceph_auth_client *ac, int result,
+	int (*handle_reply)(struct ceph_auth_client *ac,
 			    void *buf, void *end, u8 *session_key,
 			    int *session_key_len, u8 *con_secret,
 			    int *con_secret_len);