This patch adds a define for the max sifs frame size value according 802.15.4. Signed-off-by: Alexander Aring <alex.aring@xxxxxxxxx> --- include/linux/ieee802154.h | 1 + net/mac802154/util.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h index 40b0ab9..f26682e 100644 --- a/include/linux/ieee802154.h +++ b/include/linux/ieee802154.h @@ -39,6 +39,7 @@ #define IEEE802154_LIFS_PERIOD 40 #define IEEE802154_SIFS_PERIOD 12 +#define IEEE802154_MAX_SIFS_FRAME_SIZE 18 #define IEEE802154_MAX_CHANNEL 26 #define IEEE802154_MAX_PAGE 31 diff --git a/net/mac802154/util.c b/net/mac802154/util.c index 04e13d9..dad966c 100644 --- a/net/mac802154/util.c +++ b/net/mac802154/util.c @@ -72,9 +72,9 @@ void ieee802154_xmit_complete(struct ieee802154_hw *hw, struct sk_buff *skb, * part of skb->len. */ if (hw->flags & IEEE802154_HW_TX_OMIT_CKSUM) - max_sifs_size = 16; + max_sifs_size = IEEE802154_MAX_SIFS_FRAME_SIZE - 2; else - max_sifs_size = 18; + max_sifs_size = IEEE802154_MAX_SIFS_FRAME_SIZE; if (skb->len > max_sifs_size) hrtimer_start(&local->ifs_timer, -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html