The patch titled hci endianness annotations has been added to the -mm tree. Its filename is hci-endianness-annotations.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: hci endianness annotations From: Al Viro <viro@xxxxxxxxxxxxxxxx> Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Acked-by: Marcel Holtmann <marcel@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/net/bluetooth/hci.h | 4 ++-- net/bluetooth/hci_sock.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff -puN include/net/bluetooth/hci.h~hci-endianness-annotations include/net/bluetooth/hci.h --- a/include/net/bluetooth/hci.h~hci-endianness-annotations +++ a/include/net/bluetooth/hci.h @@ -739,13 +739,13 @@ struct sockaddr_hci { struct hci_filter { unsigned long type_mask; unsigned long event_mask[2]; - __u16 opcode; + __le16 opcode; }; struct hci_ufilter { __u32 type_mask; __u32 event_mask[2]; - __u16 opcode; + __le16 opcode; }; #define HCI_FLT_TYPE_BITS 31 diff -puN net/bluetooth/hci_sock.c~hci-endianness-annotations net/bluetooth/hci_sock.c --- a/net/bluetooth/hci_sock.c~hci-endianness-annotations +++ a/net/bluetooth/hci_sock.c @@ -123,10 +123,10 @@ void hci_send_to_sock(struct hci_dev *hd if (flt->opcode && ((evt == HCI_EV_CMD_COMPLETE && flt->opcode != - get_unaligned((__u16 *)(skb->data + 3))) || + get_unaligned((__le16 *)(skb->data + 3))) || (evt == HCI_EV_CMD_STATUS && flt->opcode != - get_unaligned((__u16 *)(skb->data + 4))))) + get_unaligned((__le16 *)(skb->data + 4))))) continue; } _ Patches currently in -mm which might be from viro@xxxxxxxxxxxxxxxx are origin.patch config_computone-should-depend-on-isaeisapci.patch appldata_mem-dependes-on-vm-counters.patch uml-problems-with-linux-ioh.patch missing-includes-in-hilkbd.patch hci-endianness-annotations.patch lockd-endianness-annotations-rebased.patch slab-leaks3-default-y.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html