diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2012-02-22 16:49:28 +0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-23 15:06:59 +0400 |
commit | 97e0bdeb93cc9bd014c21d5400af4fa7f2fe2f91 (patch) | |
tree | f552e325571d2e73d09097fe5d79be4c38d8c72f /net/bluetooth/mgmt.c | |
parent | 54d04dbbb933e8a49429d602b847e367782267e9 (diff) | |
download | linux-97e0bdeb93cc9bd014c21d5400af4fa7f2fe2f91.tar.xz |
Bluetooth: Enable timestamps for control channel
The control channel can be also monitored, so include timestamps here
as well. And make sure management events get their timestamp when they
are created.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 08c657df7f8c..8b4df0473ec3 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -817,6 +817,9 @@ static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, if (data) memcpy(skb_put(skb, data_len), data, data_len); + /* Time stamp */ + __net_timestamp(skb); + hci_send_to_control(skb, skip_sk); kfree_skb(skb); |