[PATCH] Fix nfsroot build

Previous thread: Re: [linux-cifs-client] Re: [PATCH] CIFS: make sec=none force an anonymous mount by Steve French (smfltc) on Saturday, May 5, 2007 - 1:47 pm. (1 message)

Next thread: BUG: sleeping function called from invalid context at net/core/sock.c:1523 by Ray Lee on Saturday, May 5, 2007 - 2:25 pm. (2 messages)
From: Ralf Baechle
Date: Saturday, May 5, 2007 - 2:05 pm

CC      fs/nfs/nfsroot.o
fs/nfs/nfsroot.c:131: error: tokens causes a section type conflict
make[2]: *** [fs/nfs/nfsroot.o] Error 1

This is due to mixing const and non-const content in the same section
which halfway recent gccs absolutely hate.  Fixed by dropping the const.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

diff --git a/include/linux/parser.h b/include/linux/parser.h
index 86676f6..26b2bdf 100644
--- a/include/linux/parser.h
+++ b/include/linux/parser.h
@@ -14,7 +14,7 @@ struct match_token {
 	const char *pattern;
 };
 
-typedef const struct match_token match_table_t[];
+typedef struct match_token match_table_t[];
 
 /* Maximum number of arguments that match_token will find in a pattern */
 enum {MAX_OPT_ARGS = 3};
-

From: Trond Myklebust
Date: Saturday, May 5, 2007 - 4:44 pm

Previous thread: Re: [linux-cifs-client] Re: [PATCH] CIFS: make sec=none force an anonymous mount by Steve French (smfltc) on Saturday, May 5, 2007 - 1:47 pm. (1 message)

Next thread: BUG: sleeping function called from invalid context at net/core/sock.c:1523 by Ray Lee on Saturday, May 5, 2007 - 2:25 pm. (2 messages)