summaryrefslogtreecommitdiffstats
path: root/drivers/net/amt.c
Commit message (Expand)AuthorAgeFilesLines
* net: fill in MODULE_DESCRIPTION()s under drivers/net/Jakub Kicinski2023-10-281-0/+1
* amt: remove unnecessary skb pointer checkYang Yingliang2022-08-191-4/+2
* amt: fix typo in commentRuffalo Lavoisier2022-07-281-1/+1
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-07-211-54/+189
|\
| * amt: do not use amt->nr_tunnels outside of lockTaehee Yoo2022-07-191-3/+6
| * amt: drop unexpected multicast dataTaehee Yoo2022-07-191-0/+3
| * amt: drop unexpected query messageTaehee Yoo2022-07-191-1/+13
| * amt: drop unexpected advertisement messageTaehee Yoo2022-07-191-0/+5
| * amt: add missing regeneration nonce logic in request logicTaehee Yoo2022-07-191-0/+4
| * amt: use READ_ONCE() in amt moduleTaehee Yoo2022-07-191-7/+8
| * amt: remove unnecessary locksTaehee Yoo2022-07-191-27/+5
| * amt: use workqueue for gateway side message handlingTaehee Yoo2022-07-191-15/+144
| * igmp: Fix data-races around sysctl_igmp_qrv.Kuniyuki Iwashima2022-07-181-2/+2
* | amt: remove unnecessary (void*) conversionsYu Zhe2022-06-221-4/+4
|/
* amt: fix wrong type string definitionTaehee Yoo2022-06-061-0/+1
* amt: fix possible null-ptr-deref in amt_rcv()Taehee Yoo2022-06-061-1/+2
* amt: fix wrong usage of pskb_may_pull()Taehee Yoo2022-06-061-18/+37
* amt: fix possible memory leak in amt_rcv()Taehee Yoo2022-05-251-1/+1
* amt: fix return value of amt_update_handler()Taehee Yoo2022-05-251-1/+1
* amt: fix typo in amtTaehee Yoo2022-05-251-1/+1
* amt: fix memory leak for advertisement messageTaehee Yoo2022-05-201-3/+2
* amt: fix gateway mode stuckTaehee Yoo2022-05-201-2/+4
* net: dev: Makes sure netif_rx() can be invoked in any context.Sebastian Andrzej Siewior2022-02-141-2/+2
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-01-091-1/+1
|\
| * amt: fix wrong return type of amt_send_membership_update()Taehee Yoo2022-01-091-1/+1
* | net: Don't include filter.h from net/sock.hJakub Kicinski2021-12-291-0/+1
|/
* amt: cancel delayed_work synchronously in amt_fini()Taehee Yoo2021-11-161-1/+1
* amt: use cancel_delayed_work() instead of flush_delayed_work() in amt_fini()Taehee Yoo2021-11-091-1/+1
* amt: remove duplicate include in amt.cZhang Mingyu2021-11-051-1/+0
* amt: Fix NULL but dereferenced coccicheck errorYang Li2021-11-051-1/+2
* amt: Remove duplicate includeJiapeng Chong2021-11-031-1/+0
* amt: fix error return code in amt_init()Yang Yingliang2021-11-021-1/+3
* amt: add mld report message handlerTaehee Yoo2021-11-011-7/+440
* amt: add multicast(IGMP) report message handlerTaehee Yoo2021-11-011-1/+1131
* amt: add data plane of amt interfaceTaehee Yoo2021-11-011-1/+1241
* amt: add control plane of amt interfaceTaehee Yoo2021-11-011-0/+493