The patch titled IPMI: remove bogus semaphore from watchdog has been added to the -mm tree. Its filename is ipmi-remove-bogus-semaphore-from-watchdog.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: IPMI: remove bogus semaphore from watchdog From: Corey Minyard <cminyard@xxxxxxxxxx> Lockdep was giving an error when loading the IPMI watchdog module. It turns out that if you try to claim a lock in a parameter handling routine, lockdep won't see that lock as "static" yet because the module is not yet on the module list, so it will complain. However, the semaphore in question is completely unnecessary. So just remove it. Signed-off-by: Corey Minyard <cminyard@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/ipmi/ipmi_watchdog.c | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff -puN drivers/char/ipmi/ipmi_watchdog.c~ipmi-remove-bogus-semaphore-from-watchdog drivers/char/ipmi/ipmi_watchdog.c --- a/drivers/char/ipmi/ipmi_watchdog.c~ipmi-remove-bogus-semaphore-from-watchdog +++ a/drivers/char/ipmi/ipmi_watchdog.c @@ -166,8 +166,6 @@ static char expect_close; static int ifnum_to_use = -1; -static DECLARE_RWSEM(register_sem); - /* Parameters to ipmi_set_timeout */ #define IPMI_SET_TIMEOUT_NO_HB 0 #define IPMI_SET_TIMEOUT_HB_IF_NECESSARY 1 @@ -193,11 +191,9 @@ static int set_param_int(const char *val if (endp == val) return -EINVAL; - down_read(®ister_sem); *((int *)kp->arg) = l; if (watchdog_user) rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); - up_read(®ister_sem); return rv; } @@ -226,17 +222,15 @@ static int set_param_str(const char *val s = strstrip(valcp); - down_read(®ister_sem); rv = fn(s, NULL); if (rv) - goto out_unlock; + goto out; check_parms(); if (watchdog_user) rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); - out_unlock: - up_read(®ister_sem); + out: return rv; } @@ -895,7 +889,6 @@ static void ipmi_register_watchdog(int i { int rv = -EBUSY; - down_write(®ister_sem); if (watchdog_user) goto out; @@ -922,8 +915,6 @@ static void ipmi_register_watchdog(int i } out: - up_write(®ister_sem); - if ((start_now) && (rv == 0)) { /* Run from startup, so start the timer now. */ start_now = 0; /* Disable this function after first startup. */ @@ -937,8 +928,6 @@ static void ipmi_unregister_watchdog(int { int rv; - down_write(®ister_sem); - if (!watchdog_user) goto out; @@ -963,7 +952,7 @@ static void ipmi_unregister_watchdog(int watchdog_user = NULL; out: - up_write(®ister_sem); + return; } #ifdef HAVE_NMI_HANDLER _ Patches currently in -mm which might be from cminyard@xxxxxxxxxx are ipmi-dont-init-irq-until-ready.patch ipmi-remove-bogus-semaphore-from-watchdog.patch ipmi-documentation-fixes.patch ipmi-add-polled-interface.patch ipmi-fix-hotmod-remove-lock.patch ipmi-add-09-support.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html