mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 04:50:57 +07:00
7240cdec60
This patch drops the current way of 6lowpan fragmentation on receiving side and replace it with a implementation which use the inet_frag api. The old fragmentation handling has some race conditions and isn't rfc4944 compatible. Also adding support to match fragments on destination address, source address, tag value and datagram_size which is missing in the current implementation. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
8 lines
300 B
Makefile
8 lines
300 B
Makefile
obj-$(CONFIG_IEEE802154) += ieee802154.o af_802154.o
|
|
obj-$(CONFIG_IEEE802154_6LOWPAN) += 6lowpan.o
|
|
obj-$(CONFIG_6LOWPAN_IPHC) += 6lowpan_iphc.o
|
|
|
|
6lowpan-y := 6lowpan_rtnl.o reassembly.o
|
|
ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o wpan-class.o
|
|
af_802154-y := af_ieee802154.o raw.o dgram.o
|