The patch titled

     v9fs: remove sparse bitwise warnings

has been added to the -mm tree.  Its filename is

     v9fs-9p-protocol-implementation-remove-sparse-bitwise-warnings.patch

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

v9fs-documentation-makefiles-configuration.patch
v9fs-documentation-makefiles-configuration-add-fd-based-transport-to-makefile-docs.patch
v9fs-documentation-makefiles-configuration-fix-plan9port-example-in-v9fs.patch
v9fs-vfs-file-dentry-and-directory-operations.patch
v9fs-vfs-inode-operations.patch
v9fs-vfs-inode-operations-adjust-follow_link-and-put_link-to.patch
v9fs-vfs-superblock-operations-and-glue.patch
v9fs-vfs-superblock-operations-and-glue-add-fd-based-transport-to-mount-options.patch
v9fs-9p-protocol-implementation.patch
v9fs-9p-protocol-implementation-use-standard-kernel-byteswapping.patch
v9fs-9p-protocol-implementation-remove-sparse-bitwise-warnings.patch
v9fs-transport-modules.patch
v9fs-transport-modules-add-fd-based-transport-module.patch
v9fs-transport-modules-fix-a-problem-with-named-pipe-transport.patch
v9fs-debug-and-support-routines.patch
v9fs-change-error-magic-numbers-to-defined-constants.patch
v9fs-clean-up-vfs_inode-and-setattr-functions.patch
v9fs-fix-support-for-special-files-devices-named-pipes-etc.patch
v9fs-readlink-extended-mode-check.patch
v9fs-fix-handling-of-malformed-9p-messages.patch



From: Eric Van Hensbergen <[EMAIL PROTECTED]>

Fixed a bunch of cast conversions to remove -Wbitwise warnings from sparse.

Signed-off-by: Eric Van Hensbergen <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 fs/9p/conv.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff -puN 
fs/9p/conv.c~v9fs-9p-protocol-implementation-remove-sparse-bitwise-warnings 
fs/9p/conv.c
--- 
devel/fs/9p/conv.c~v9fs-9p-protocol-implementation-remove-sparse-bitwise-warnings
   2005-08-29 22:26:45.000000000 -0700
+++ devel-akpm/fs/9p/conv.c     2005-08-29 22:26:45.000000000 -0700
@@ -88,7 +88,7 @@ static inline void buf_put_int16(struct 
 {
        buf_check_size(buf, 2);
 
-       *(u16 *) buf->p = cpu_to_le16(val);
+       *(__le16 *) buf->p = cpu_to_le16(val);
        buf->p += 2;
 }
 
@@ -96,7 +96,7 @@ static inline void buf_put_int32(struct 
 {
        buf_check_size(buf, 4);
 
-       *(u32 *)buf->p = cpu_to_le32(val);
+       *(__le32 *)buf->p = cpu_to_le32(val);
        buf->p += 4;
 }
 
@@ -104,7 +104,7 @@ static inline void buf_put_int64(struct 
 {
        buf_check_size(buf, 8);
 
-       *(u64 *)buf->p = cpu_to_le64(val);
+       *(__le64 *)buf->p = cpu_to_le64(val);
        buf->p += 8;
 }
 
@@ -147,7 +147,7 @@ static inline u16 buf_get_int16(struct c
        u16 ret = 0;
 
        buf_check_size(buf, 2);
-       ret = le16_to_cpu(*(u16 *)buf->p);
+       ret = le16_to_cpu(*(__le16 *)buf->p);
 
        buf->p += 2;
 
@@ -159,7 +159,7 @@ static inline u32 buf_get_int32(struct c
        u32 ret = 0;
 
        buf_check_size(buf, 4);
-       ret = le32_to_cpu(*(u32 *)buf->p);
+       ret = le32_to_cpu(*(__le32 *)buf->p);
 
        buf->p += 4;
 
@@ -171,7 +171,7 @@ static inline u64 buf_get_int64(struct c
        u64 ret = 0;
 
        buf_check_size(buf, 8);
-       ret = le64_to_cpu(*(u64 *)buf->p);
+       ret = le64_to_cpu(*(__le64 *)buf->p);
 
        buf->p += 8;
 
_
-
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