Messages in this thread Patch in this message |  | | | Date | Mon, 26 Jun 2006 01:13:29 +0200 | | From | Adrian Bunk <> | | Subject | [-mm patch] fs/cifs/cifsproto.h: remove #ifdef around small_smb_init_no_tc() prototype |
| |
On Sat, Jun 24, 2006 at 06:19:14AM -0700, Andrew Morton wrote: >... > Changes since 2.6.17-mm1: >... > +cifs-build-fix.patch > > Fix git-cifs.patch. >...
Let's hope gcc guesses the prototye of the function right.
Otherwise, this patch has turned a compile error into a nasty runtime error (in many cases, the stack is garbage).
The -Werror-implicit-function-declaration gcc flag would turn such possible problems into compile errors.
This patch removes the (never required) #ifdef from the prototype of thie function in fs/cifs/cifsproto.h.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.17-mm2-full/fs/cifs/cifsproto.h.old 2006-06-26 00:00:56.000000000 +0200 +++ linux-2.6.17-mm2-full/fs/cifs/cifsproto.h 2006-06-26 00:01:02.000000000 +0200 @@ -64,11 +64,9 @@ extern void header_assemble(struct smb_hdr *, char /* command */ , const struct cifsTconInfo *, int /* length of fixed section (word count) in two byte units */); -#ifdef CONFIG_CIFS_EXPERIMENTAL extern int small_smb_init_no_tc(const int smb_cmd, const int wct, struct cifsSesInfo *ses, void ** request_buf); -#endif extern int CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses, const int stage, const struct nls_table *nls_cp); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |