diff options
author | Patrick McHardy | 2005-08-15 02:24:31 +0200 |
---|---|---|
committer | David S. Miller | 2005-08-30 00:58:24 +0200 |
commit | a61bbcf28a8cb0ba56f8193d512f7222e711a294 (patch) | |
tree | 33ae1976ab3b08aac516debb2742d2c6696d5436 /net/bluetooth/hci_event.c | |
parent | [NETFILTER]: Nicer names for ipt_connbytes constants (diff) | |
download | kernel-qcow2-linux-a61bbcf28a8cb0ba56f8193d512f7222e711a294.tar.gz kernel-qcow2-linux-a61bbcf28a8cb0ba56f8193d512f7222e711a294.tar.xz kernel-qcow2-linux-a61bbcf28a8cb0ba56f8193d512f7222e711a294.zip |
[NET]: Store skb->timestamp as offset to a base timestamp
Reduces skb size by 8 bytes on 64-bit.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r-- | net/bluetooth/hci_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 40b219560bb1..d6da0939216d 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -1087,7 +1087,7 @@ void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data) memcpy(ev->data, data, dlen); bt_cb(skb)->incoming = 1; - do_gettimeofday(&skb->stamp); + __net_timestamp(skb); bt_cb(skb)->pkt_type = HCI_EVENT_PKT; skb->dev = (void *) hdev; |