[Bluetooth] Add direction and timestamp to stack internal events

This patch changes the direction to incoming and adds the timestamp
to all stack internal events.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>

+3
+3
net/bluetooth/hci_event.c
··· 1035 ev->type = type; 1036 memcpy(ev->data, data, dlen); 1037 1038 skb->pkt_type = HCI_EVENT_PKT; 1039 skb->dev = (void *) hdev; 1040 hci_send_to_sock(hdev, skb);
··· 1035 ev->type = type; 1036 memcpy(ev->data, data, dlen); 1037 1038 + bt_cb(skb)->incoming = 1; 1039 + do_gettimeofday(&skb->stamp); 1040 + 1041 skb->pkt_type = HCI_EVENT_PKT; 1042 skb->dev = (void *) hdev; 1043 hci_send_to_sock(hdev, skb);