diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-05-22 15:43:53 (GMT) |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-05-23 15:57:08 (GMT) |
commit | 344f8c119df742f2bf7098cf8fc326351f583249 (patch) | |
tree | 032162247fc24529b2809f4e3a914e66ef836400 /include/net | |
parent | 4a3a8c0c3a613e481bea931f0d65dc4a7efaa9b9 (diff) | |
download | linux-344f8c119df742f2bf7098cf8fc326351f583249.tar.xz |
mac802154: use atomic ops for sequence incrementation
This patch will use atomic operations for sequence number incrementation
while MAC header generation. Upper layers like af_802154 or 6LoWPAN
could call this function in a parallel context while generating 802.15.4
MAC header before queuing into wpan interfaces transmit queue.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg802154.h | 4 | ||||
-rw-r--r-- | include/net/ieee802154_netdev.h | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/net/cfg802154.h b/include/net/cfg802154.h index c6aa1d2..4de59aa 100644 --- a/include/net/cfg802154.h +++ b/include/net/cfg802154.h @@ -177,9 +177,9 @@ struct wpan_dev { __le64 extended_addr; /* MAC BSN field */ - u8 bsn; + atomic_t bsn; /* MAC DSN field */ - u8 dsn; + atomic_t dsn; u8 min_be; u8 max_be; diff --git a/include/net/ieee802154_netdev.h b/include/net/ieee802154_netdev.h index 94a2970..144fefb 100644 --- a/include/net/ieee802154_netdev.h +++ b/include/net/ieee802154_netdev.h @@ -431,7 +431,6 @@ struct ieee802154_mlme_ops { */ __le16 (*get_pan_id)(const struct net_device *dev); __le16 (*get_short_addr)(const struct net_device *dev); - u8 (*get_dsn)(const struct net_device *dev); }; static inline struct ieee802154_mlme_ops * |