[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1407703909-24350-2-git-send-email-geert@linux-m68k.org>
Date: Sun, 10 Aug 2014 22:51:49 +0200
From: Geert Uytterhoeven <geert@...ux-m68k.org>
To: Steve French <sfrench@...ba.org>,
Sachin Prabhu <sprabhu@...hat.com>
Cc: linux-cifs@...r.kernel.org, linux-kernel@...r.kernel.org,
Geert Uytterhoeven <geert@...ux-m68k.org>
Subject: [PATCH 2/2] cifs: Remove unused sess_auth_kerberos() for !CONFIG_CIFS_UPCALL case
If CONFIG_CIFS_UPCALL is not set:
fs/cifs/sess.c:1100: warning: ‘sess_auth_kerberos’ defined but not used
Commit cc87c47d9d7ac25554aa81cd8ded56e75f79c198 ("cifs: Separate
rawntlmssp auth from CIFS_SessSetup()") removed the sole user of the
dummy version of sess_auth_kerberos() in the non-CONFIG_CIFS_UPCALL
case, but forgot to remove the actual function definition.
Remove the dummy version to fix this.
Signed-off-by: Geert Uytterhoeven <geert@...ux-m68k.org>
---
fs/cifs/sess.c | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c
index 8090ad3c5ea5..31817bd5f4b0 100644
--- a/fs/cifs/sess.c
+++ b/fs/cifs/sess.c
@@ -1092,17 +1092,7 @@ out:
kfree(ses->auth_key.response);
ses->auth_key.response = NULL;
}
-
-#else
-
-static void
-sess_auth_kerberos(struct sess_data *sess_data)
-{
- cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
- sess_data->result = -ENOSYS;
- sess_data->func = NULL;
-}
-#endif /* ! CONFIG_CIFS_UPCALL */
+#endif /* CONFIG_CIFS_UPCALL */
/*
* The required kvec buffers have to be allocated before calling this
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists