The patch titled
     dm: add missing braces in driver debug code
has been added to the -mm tree.  Its filename is
     dm-add-missing-braces-in-driver-debug-code.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: dm: add missing braces in driver debug code
From: Mariusz Kozlowski <[EMAIL PROTECTED]>

Add missing braces in dm debug macros.

Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>
Cc: Alasdair G Kergon <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/md/dm.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff -puN drivers/md/dm.h~dm-add-missing-braces-in-driver-debug-code 
drivers/md/dm.h
--- a/drivers/md/dm.h~dm-add-missing-braces-in-driver-debug-code
+++ a/drivers/md/dm.h
@@ -25,7 +25,7 @@
                if (printk_ratelimit()) \
                        printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " \
                               f "\n", ## arg); \
-       while (0)
+       } while (0)
 
 #define DMWARN(f, arg...) \
        printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
@@ -34,7 +34,7 @@
                if (printk_ratelimit()) \
                        printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " \
                               f "\n", ## arg); \
-       while (0)
+       } while (0)
 
 #define DMINFO(f, arg...) \
        printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
@@ -43,7 +43,7 @@
                if (printk_ratelimit()) \
                        printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f \
                               "\n", ## arg); \
-       while (0)
+       } while (0)
 
 #ifdef CONFIG_DM_DEBUG
 #  define DMDEBUG(f, arg...) \
@@ -53,7 +53,7 @@
                if (printk_ratelimit()) \
                        printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX ": " f \
                               "\n", ## arg); \
-       while (0)
+       } while (0)
 #else
 #  define DMDEBUG(f, arg...) do {} while (0)
 #  define DMDEBUG_LIMIT(f, arg...) do {} while (0)
_

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

dm-add-missing-braces-in-driver-debug-code.patch
m68k-parenthesis-balance.patch
arm26-remove-broken-and-unused-macro.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