diff for duplicates of <20060201090326.139510000@localhost.localdomain> diff --git a/a/1.txt b/N1/1.txt index b863988..204805a 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -21,7 +21,8 @@ Signed-off-by: Akinobu Mita <mita@miraclelinux.com> 2 files changed, 144 insertions(+) Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h -=================================--- /dev/null +=================================================================== +--- /dev/null +++ 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h @@ -0,0 +1,18 @@ +#ifndef _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ @@ -43,7 +44,8 @@ Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h + +#endif /* _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ */ Index: 2.6-git/include/asm-generic/bitops/le.h -=================================--- /dev/null +=================================================================== +--- /dev/null +++ 2.6-git/include/asm-generic/bitops/le.h @@ -0,0 +1,126 @@ +#ifndef _ASM_GENERIC_BITOPS_LE_H_ @@ -102,9 +104,9 @@ Index: 2.6-git/include/asm-generic/bitops/le.h +/* include/linux/byteorder does not support "unsigned long" type */ +static inline unsigned long ext2_swabp(const unsigned long * x) +{ -+#if BITS_PER_LONG = 64 ++#if BITS_PER_LONG == 64 + return (unsigned long) __swab64p((u64 *) x); -+#elif BITS_PER_LONG = 32 ++#elif BITS_PER_LONG == 32 + return (unsigned long) __swab32p((u32 *) x); +#else +#error BITS_PER_LONG not defined @@ -114,9 +116,9 @@ Index: 2.6-git/include/asm-generic/bitops/le.h +/* include/linux/byteorder doesn't support "unsigned long" type */ +static inline unsigned long ext2_swab(const unsigned long y) +{ -+#if BITS_PER_LONG = 64 ++#if BITS_PER_LONG == 64 + return (unsigned long) __swab64((u64) y); -+#elif BITS_PER_LONG = 32 ++#elif BITS_PER_LONG == 32 + return (unsigned long) __swab32((u32) y); +#else +#error BITS_PER_LONG not defined @@ -156,7 +158,7 @@ Index: 2.6-git/include/asm-generic/bitops/le.h + tmp = ext2_swabp(p); +found_first: + tmp |= ~0UL << size; -+ if (tmp = ~0UL) /* Are any bits zero? */ ++ if (tmp == ~0UL) /* Are any bits zero? */ + return result + size; /* Nope. Skip ffz */ +found_middle: + return result + ffz(tmp); diff --git a/a/content_digest b/N1/content_digest index d3ae099..adbfa7f 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,7 +1,7 @@ "ref\020060201090224.536581000@localhost.localdomain\0" "From\0Akinobu Mita <mita@miraclelinux.com>\0" "Subject\0[patch 15/44] generic ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()\0" - "Date\0Wed, 01 Feb 2006 09:02:39 +0000\0" + "Date\0Wed, 01 Feb 2006 18:02:39 +0900\0" "To\0linux-kernel@vger.kernel.org\0" "Cc\0Richard Henderson <rth@twiddle.net>" Ivan Kokshaysky <ink@jurassic.park.msu.ru> @@ -11,7 +11,7 @@ Linus Torvalds <torvalds@osdl.org> linux-ia64@vger.kernel.org Hirokazu Takata <takata@linux-m32r.org> - linux-m68k@vger.kernel.org + linux-m68k@lists.linux-m68k.org linux-mips@linux-mips.org parisc-linux@parisc-linux.org linuxsh-dev@lists.sourceforge.net @@ -23,6 +23,7 @@ Chris Zankel <chris@zankel.net> " Akinobu Mita <mita@miraclelinux.com>\0" "\00:1\0" + "fn\0ext2-non-atomic-bitops.patch\0" "b\0" "This patch introduces the C-language equivalents of the functions below:\n" "\n" @@ -47,7 +48,8 @@ " 2 files changed, 144 insertions(+)\n" "\n" "Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h\n" - "=================================--- /dev/null\n" + "===================================================================\n" + "--- /dev/null\n" "+++ 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h\n" "@@ -0,0 +1,18 @@\n" "+#ifndef _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_\n" @@ -69,7 +71,8 @@ "+\n" "+#endif /* _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ */\n" "Index: 2.6-git/include/asm-generic/bitops/le.h\n" - "=================================--- /dev/null\n" + "===================================================================\n" + "--- /dev/null\n" "+++ 2.6-git/include/asm-generic/bitops/le.h\n" "@@ -0,0 +1,126 @@\n" "+#ifndef _ASM_GENERIC_BITOPS_LE_H_\n" @@ -128,9 +131,9 @@ "+/* include/linux/byteorder does not support \"unsigned long\" type */\n" "+static inline unsigned long ext2_swabp(const unsigned long * x)\n" "+{\n" - "+#if BITS_PER_LONG = 64\n" + "+#if BITS_PER_LONG == 64\n" "+\treturn (unsigned long) __swab64p((u64 *) x);\n" - "+#elif BITS_PER_LONG = 32\n" + "+#elif BITS_PER_LONG == 32\n" "+\treturn (unsigned long) __swab32p((u32 *) x);\n" "+#else\n" "+#error BITS_PER_LONG not defined\n" @@ -140,9 +143,9 @@ "+/* include/linux/byteorder doesn't support \"unsigned long\" type */\n" "+static inline unsigned long ext2_swab(const unsigned long y)\n" "+{\n" - "+#if BITS_PER_LONG = 64\n" + "+#if BITS_PER_LONG == 64\n" "+\treturn (unsigned long) __swab64((u64) y);\n" - "+#elif BITS_PER_LONG = 32\n" + "+#elif BITS_PER_LONG == 32\n" "+\treturn (unsigned long) __swab32((u32) y);\n" "+#else\n" "+#error BITS_PER_LONG not defined\n" @@ -182,7 +185,7 @@ "+\ttmp = ext2_swabp(p);\n" "+found_first:\n" "+\ttmp |= ~0UL << size;\n" - "+\tif (tmp = ~0UL)\t/* Are any bits zero? */\n" + "+\tif (tmp == ~0UL)\t/* Are any bits zero? */\n" "+\t\treturn result + size; /* Nope. Skip ffz */\n" "+found_middle:\n" "+\treturn result + ffz(tmp);\n" @@ -201,4 +204,4 @@ "\n" -- -bd5ef71fd9295a6e8fa6fadc3475d628997d8afb4072f0d76c4b3c2c03e8f5a6 +8c7654db2ccec3c820ea633029ca84e56a2abee45d14a7eb61b2e773e76ad29c
diff --git a/a/content_digest b/N2/content_digest index d3ae099..f0f255d 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -11,7 +11,7 @@ Linus Torvalds <torvalds@osdl.org> linux-ia64@vger.kernel.org Hirokazu Takata <takata@linux-m32r.org> - linux-m68k@vger.kernel.org + linux-m68k@lists.linux-m68k.org linux-mips@linux-mips.org parisc-linux@parisc-linux.org linuxsh-dev@lists.sourceforge.net @@ -201,4 +201,4 @@ "\n" -- -bd5ef71fd9295a6e8fa6fadc3475d628997d8afb4072f0d76c4b3c2c03e8f5a6 +257114b1f0d1b9e68fff27ce4814c1a21c0d19b5d057f58fc102553f008ad4c7
diff --git a/a/1.txt b/N3/1.txt index b863988..204805a 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -21,7 +21,8 @@ Signed-off-by: Akinobu Mita <mita@miraclelinux.com> 2 files changed, 144 insertions(+) Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h -=================================--- /dev/null +=================================================================== +--- /dev/null +++ 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h @@ -0,0 +1,18 @@ +#ifndef _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ @@ -43,7 +44,8 @@ Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h + +#endif /* _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ */ Index: 2.6-git/include/asm-generic/bitops/le.h -=================================--- /dev/null +=================================================================== +--- /dev/null +++ 2.6-git/include/asm-generic/bitops/le.h @@ -0,0 +1,126 @@ +#ifndef _ASM_GENERIC_BITOPS_LE_H_ @@ -102,9 +104,9 @@ Index: 2.6-git/include/asm-generic/bitops/le.h +/* include/linux/byteorder does not support "unsigned long" type */ +static inline unsigned long ext2_swabp(const unsigned long * x) +{ -+#if BITS_PER_LONG = 64 ++#if BITS_PER_LONG == 64 + return (unsigned long) __swab64p((u64 *) x); -+#elif BITS_PER_LONG = 32 ++#elif BITS_PER_LONG == 32 + return (unsigned long) __swab32p((u32 *) x); +#else +#error BITS_PER_LONG not defined @@ -114,9 +116,9 @@ Index: 2.6-git/include/asm-generic/bitops/le.h +/* include/linux/byteorder doesn't support "unsigned long" type */ +static inline unsigned long ext2_swab(const unsigned long y) +{ -+#if BITS_PER_LONG = 64 ++#if BITS_PER_LONG == 64 + return (unsigned long) __swab64((u64) y); -+#elif BITS_PER_LONG = 32 ++#elif BITS_PER_LONG == 32 + return (unsigned long) __swab32((u32) y); +#else +#error BITS_PER_LONG not defined @@ -156,7 +158,7 @@ Index: 2.6-git/include/asm-generic/bitops/le.h + tmp = ext2_swabp(p); +found_first: + tmp |= ~0UL << size; -+ if (tmp = ~0UL) /* Are any bits zero? */ ++ if (tmp == ~0UL) /* Are any bits zero? */ + return result + size; /* Nope. Skip ffz */ +found_middle: + return result + ffz(tmp); diff --git a/a/content_digest b/N3/content_digest index d3ae099..db9659b 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -1,7 +1,7 @@ "ref\020060201090224.536581000@localhost.localdomain\0" "From\0Akinobu Mita <mita@miraclelinux.com>\0" "Subject\0[patch 15/44] generic ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()\0" - "Date\0Wed, 01 Feb 2006 09:02:39 +0000\0" + "Date\0Wed, 01 Feb 2006 18:02:39 +0900\0" "To\0linux-kernel@vger.kernel.org\0" "Cc\0Richard Henderson <rth@twiddle.net>" Ivan Kokshaysky <ink@jurassic.park.msu.ru> @@ -23,6 +23,7 @@ Chris Zankel <chris@zankel.net> " Akinobu Mita <mita@miraclelinux.com>\0" "\00:1\0" + "fn\0ext2-non-atomic-bitops.patch\0" "b\0" "This patch introduces the C-language equivalents of the functions below:\n" "\n" @@ -47,7 +48,8 @@ " 2 files changed, 144 insertions(+)\n" "\n" "Index: 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h\n" - "=================================--- /dev/null\n" + "===================================================================\n" + "--- /dev/null\n" "+++ 2.6-git/include/asm-generic/bitops/ext2-non-atomic.h\n" "@@ -0,0 +1,18 @@\n" "+#ifndef _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_\n" @@ -69,7 +71,8 @@ "+\n" "+#endif /* _ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_ */\n" "Index: 2.6-git/include/asm-generic/bitops/le.h\n" - "=================================--- /dev/null\n" + "===================================================================\n" + "--- /dev/null\n" "+++ 2.6-git/include/asm-generic/bitops/le.h\n" "@@ -0,0 +1,126 @@\n" "+#ifndef _ASM_GENERIC_BITOPS_LE_H_\n" @@ -128,9 +131,9 @@ "+/* include/linux/byteorder does not support \"unsigned long\" type */\n" "+static inline unsigned long ext2_swabp(const unsigned long * x)\n" "+{\n" - "+#if BITS_PER_LONG = 64\n" + "+#if BITS_PER_LONG == 64\n" "+\treturn (unsigned long) __swab64p((u64 *) x);\n" - "+#elif BITS_PER_LONG = 32\n" + "+#elif BITS_PER_LONG == 32\n" "+\treturn (unsigned long) __swab32p((u32 *) x);\n" "+#else\n" "+#error BITS_PER_LONG not defined\n" @@ -140,9 +143,9 @@ "+/* include/linux/byteorder doesn't support \"unsigned long\" type */\n" "+static inline unsigned long ext2_swab(const unsigned long y)\n" "+{\n" - "+#if BITS_PER_LONG = 64\n" + "+#if BITS_PER_LONG == 64\n" "+\treturn (unsigned long) __swab64((u64) y);\n" - "+#elif BITS_PER_LONG = 32\n" + "+#elif BITS_PER_LONG == 32\n" "+\treturn (unsigned long) __swab32((u32) y);\n" "+#else\n" "+#error BITS_PER_LONG not defined\n" @@ -182,7 +185,7 @@ "+\ttmp = ext2_swabp(p);\n" "+found_first:\n" "+\ttmp |= ~0UL << size;\n" - "+\tif (tmp = ~0UL)\t/* Are any bits zero? */\n" + "+\tif (tmp == ~0UL)\t/* Are any bits zero? */\n" "+\t\treturn result + size; /* Nope. Skip ffz */\n" "+found_middle:\n" "+\treturn result + ffz(tmp);\n" @@ -201,4 +204,4 @@ "\n" -- -bd5ef71fd9295a6e8fa6fadc3475d628997d8afb4072f0d76c4b3c2c03e8f5a6 +b795ba82a735c317f9007b8abca442153b35395f38dcd3aea2659a8cea0d7462
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.