]> Pileus Git - ~andy/linux/commitdiff
powerpc: Pack arch_hw_breakpoint to avoid holes in struct
authorMichael Neuling <mikey@neuling.org>
Wed, 5 Sep 2012 19:17:47 +0000 (19:17 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 7 Sep 2012 01:44:36 +0000 (11:44 +1000)
No functional change

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/hw_breakpoint.h

index be04330af75194562e3473084fd33ec7589dd696..39b323e80c30d2241794c74f0a23f60d5fec47fa 100644 (file)
 #ifdef CONFIG_HAVE_HW_BREAKPOINT
 
 struct arch_hw_breakpoint {
-       bool            extraneous_interrupt;
-       u8              len; /* length of the target data symbol */
-       int             type;
        unsigned long   address;
+       int             type;
+       u8              len; /* length of the target data symbol */
+       bool            extraneous_interrupt;
 };
 
 #include <linux/kdebug.h>