aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/amt.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-08-19amt: remove unnecessary skb pointer checkYang Yingliang1-4/+2
2022-07-28amt: fix typo in commentRuffalo Lavoisier1-1/+1
2022-07-21Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-54/+189
2022-07-19amt: do not use amt->nr_tunnels outside of lockTaehee Yoo1-3/+6
2022-07-19amt: drop unexpected multicast dataTaehee Yoo1-0/+3
2022-07-19amt: drop unexpected query messageTaehee Yoo1-1/+13
2022-07-19amt: drop unexpected advertisement messageTaehee Yoo1-0/+5
2022-07-19amt: add missing regeneration nonce logic in request logicTaehee Yoo1-0/+4
2022-07-19amt: use READ_ONCE() in amt moduleTaehee Yoo1-7/+8
2022-07-19amt: remove unnecessary locksTaehee Yoo1-27/+5
2022-07-19amt: use workqueue for gateway side message handlingTaehee Yoo1-15/+144
2022-07-18igmp: Fix data-races around sysctl_igmp_qrv.Kuniyuki Iwashima1-2/+2
2022-06-22amt: remove unnecessary (void*) conversionsYu Zhe1-4/+4
2022-06-06amt: fix wrong type string definitionTaehee Yoo1-0/+1
2022-06-06amt: fix possible null-ptr-deref in amt_rcv()Taehee Yoo1-1/+2
2022-06-06amt: fix wrong usage of pskb_may_pull()Taehee Yoo1-18/+37
2022-05-25amt: fix possible memory leak in amt_rcv()Taehee Yoo1-1/+1
2022-05-25amt: fix return value of amt_update_handler()Taehee Yoo1-1/+1
2022-05-25amt: fix typo in amtTaehee Yoo1-1/+1
2022-05-20amt: fix memory leak for advertisement messageTaehee Yoo1-3/+2
2022-05-20amt: fix gateway mode stuckTaehee Yoo1-2/+4
2022-02-14net: dev: Makes sure netif_rx() can be invoked in any context.Sebastian Andrzej Siewior1-2/+2
2022-01-09Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2022-01-09amt: fix wrong return type of amt_send_membership_update()Taehee Yoo1-1/+1
2021-12-29net: Don't include filter.h from net/sock.hJakub Kicinski1-0/+1
2021-11-16amt: cancel delayed_work synchronously in amt_fini()Taehee Yoo1-1/+1
2021-11-09amt: use cancel_delayed_work() instead of flush_delayed_work() in amt_fini()Taehee Yoo1-1/+1
2021-11-05amt: remove duplicate include in amt.cZhang Mingyu1-1/+0
2021-11-05amt: Fix NULL but dereferenced coccicheck errorYang Li1-1/+2
2021-11-03amt: Remove duplicate includeJiapeng Chong1-1/+0
2021-11-02amt: fix error return code in amt_init()Yang Yingliang1-1/+3
2021-11-01amt: add mld report message handlerTaehee Yoo1-7/+440
2021-11-01amt: add multicast(IGMP) report message handlerTaehee Yoo1-1/+1131
2021-11-01amt: add data plane of amt interfaceTaehee Yoo1-1/+1241
2021-11-01amt: add control plane of amt interfaceTaehee Yoo1-0/+493