Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=178398dca00b276aaa1aded7cded89921f710365
Commit:     178398dca00b276aaa1aded7cded89921f710365
Parent:     893a342a686e6ce36ef24d322f3f52420a041313
Author:     Wu, Bryan <[EMAIL PROTECTED]>
AuthorDate: Thu Apr 26 00:38:01 2007 -0700
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Apr 27 13:28:40 2007 -0700

    USB gadget rndis: fix struct rndis_packet_msg_type unaligned bug
    
    skb_push function may return a pointer which is not aligned as required
    by struct rndis_packet_msg_type. Using attribute trick to fix this bug.
    
    Signed-off-by: Roy Huang <[EMAIL PROTECTED]>
    Signed-off-by: Jie Zhang <[EMAIL PROTECTED]>
    Signed-off-by: Bryan Wu <[EMAIL PROTECTED]>
    Cc: David Brownell <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/gadget/rndis.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/rndis.h b/drivers/usb/gadget/rndis.h
index 4c3c725..397b149 100644
--- a/drivers/usb/gadget/rndis.h
+++ b/drivers/usb/gadget/rndis.h
@@ -195,7 +195,7 @@ struct rndis_packet_msg_type
        __le32  PerPacketInfoLength;
        __le32  VcHandle;
        __le32  Reserved;
-};
+} __attribute__ ((packed));
 
 struct rndis_config_parameter
 {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to