提交 79750ac4 编写于 作者: A Alexander Aring 提交者: Marcel Holtmann

ieee802154: add helpers for frame control checks

This patch introduce two static inline functions. The first to get the
frame control field from an sk_buff. The second is for checking on the
acknowledgment request bit on the frame control field. Later we can
introduce more functions to check on the frame control fields.

These will deprecate the current behaviour which requires a
host-byteorder conversion and manually bit handling.
Reviewed-by: NStefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: NAlexander Aring <alex.aring@gmail.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 ab40ff75
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/random.h> #include <linux/random.h>
#include <linux/skbuff.h>
#include <linux/unaligned/memmove.h>
#include <asm/byteorder.h> #include <asm/byteorder.h>
#define IEEE802154_MTU 127 #define IEEE802154_MTU 127
...@@ -218,6 +220,7 @@ enum { ...@@ -218,6 +220,7 @@ enum {
/* frame control handling */ /* frame control handling */
#define IEEE802154_FCTL_FTYPE 0x0003 #define IEEE802154_FCTL_FTYPE 0x0003
#define IEEE802154_FCTL_ACKREQ 0x0020
#define IEEE802154_FCTL_INTRA_PAN 0x0040 #define IEEE802154_FCTL_INTRA_PAN 0x0040
#define IEEE802154_FTYPE_DATA 0x0001 #define IEEE802154_FTYPE_DATA 0x0001
...@@ -232,6 +235,15 @@ static inline int ieee802154_is_data(__le16 fc) ...@@ -232,6 +235,15 @@ static inline int ieee802154_is_data(__le16 fc)
cpu_to_le16(IEEE802154_FTYPE_DATA); cpu_to_le16(IEEE802154_FTYPE_DATA);
} }
/**
* ieee802154_is_ackreq - check if acknowledgment request bit is set
* @fc: frame control bytes in little-endian byteorder
*/
static inline bool ieee802154_is_ackreq(__le16 fc)
{
return fc & cpu_to_le16(IEEE802154_FCTL_ACKREQ);
}
/** /**
* ieee802154_is_intra_pan - check if intra pan id communication * ieee802154_is_intra_pan - check if intra pan id communication
* @fc: frame control bytes in little-endian byteorder * @fc: frame control bytes in little-endian byteorder
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册