The patch titled
     typo in ipc/ipc_sysctl.c -> compile failure
has been added to the -mm tree.  Its filename is
     sysctl-move-sysv-ipc-sysctls-to-their-own-file-fix-2.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: typo in ipc/ipc_sysctl.c -> compile failure
From: Grant Coady <[EMAIL PROTECTED]>

Fix typos causing compile failure when CONFIG_PROC_FS not set in
ipc/ipc_sysctl.c, compile tested.

ipc/ipc_sysctl.c:107: error: `proc_ipc_doulongvec_minmax' undeclared here (not 
in a function)
ipc/ipc_sysctl.c:107: error: initializer element is not constant
[...]
ipc/ipc_sysctl.c:164: error: (near initialization for `ipc_kern_table[7]')
make[1]: *** [ipc/ipc_sysctl.o] Error 1
make: *** [ipc] Error 2

Also applies cleanly to 2.6.20-rc6-mm3.

Signed-off-by: Grant Coady <[EMAIL PROTECTED]>
Cc: Eric W. Biederman <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 ipc/ipc_sysctl.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN ipc/ipc_sysctl.c~sysctl-move-sysv-ipc-sysctls-to-their-own-file-fix-2 
ipc/ipc_sysctl.c
--- a/ipc/ipc_sysctl.c~sysctl-move-sysv-ipc-sysctls-to-their-own-file-fix-2
+++ a/ipc/ipc_sysctl.c
@@ -50,8 +50,8 @@ static int proc_ipc_doulongvec_minmax(ct
 }
 
 #else
-#define proc_ipc_do_ulongvec_minmax NULL
-#define proc_ipc_do_intvec         NULL
+#define proc_ipc_doulongvec_minmax NULL
+#define proc_ipc_dointvec         NULL
 #endif
 
 #ifdef CONFIG_SYSCTL_SYSCALL
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

sysctl-move-sysv-ipc-sysctls-to-their-own-file-fix-2.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to