summaryrefslogtreecommitdiff
path: root/net/core/netpoll.c
AgeCommit message (Expand)AuthorFilesLines
2026-07-30netconsole: move netpoll_wait_carrier() as netcons_wait_carrier()Breno Leitao1-15/+0
2026-07-30netconsole: move egress_dev() as netcons_egress_dev()Breno Leitao1-17/+0
2026-07-30netconsole: move netpoll_take_ipv6() as netcons_take_ipv6()Breno Leitao1-42/+0
2026-07-30netconsole: move netpoll_take_ipv4() as netcons_take_ipv4()Breno Leitao1-30/+0
2026-07-30netconsole: move netpoll_local_ip_unset() as netcons_local_ip_unset()Breno Leitao1-18/+0
2026-07-30netconsole: take over netpoll_setup() from netpollBreno Leitao1-81/+0
2026-07-30netpoll: export the netpoll_setup() helpers for netconsoleBreno Leitao1-5/+10
2026-07-30netpoll: export carrier_timeout via netpoll_get_carrier_timeout()Breno Leitao1-4/+14
2026-07-17netconsole: move skb_pool_flush() from netpollBreno Leitao1-10/+0
2026-07-17netconsole: move refill_skbs() and skb-pool sizing macros from netpollBreno Leitao1-23/+0
2026-07-17netconsole: move refill_skbs_work_handler() from netpollBreno Leitao1-9/+0
2026-07-17netconsole: take over skb pool lifecycle from netpollBreno Leitao1-11/+1
2026-07-17netpoll: export refill_skbs(), refill_skbs_work_handler(), skb_pool_flush()Breno Leitao1-3/+6
2026-07-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni1-8/+1
2026-06-30netpoll: do not warn when the best-effort pool refill failsBreno Leitao1-1/+1
2026-06-27netpoll: fix a use-after-free on shutdown pathBreno Leitao1-8/+1
2026-06-09netconsole: do not dequeue pooled skbs that cannot satisfy lenBreno Leitao1-7/+0
2026-05-21Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-0/+2
2026-05-21netpoll: normalize skb->dev to the netpoll deviceZhang Cen1-0/+2
2026-05-13netconsole: move find_skb() from netpollBreno Leitao1-28/+0
2026-05-13netpoll: rename and export netpoll_zap_completion_queue()Breno Leitao1-5/+4
2026-05-13netconsole: move netpoll_udp_checksum() from netpollBreno Leitao1-28/+1
2026-05-13netconsole: move push_udp() from netpollBreno Leitao1-19/+0
2026-05-13netconsole: move push_eth() from netpollBreno Leitao1-15/+0
2026-05-13netconsole: move push_ipv4() from netpollBreno Leitao1-29/+0
2026-05-13netconsole: move push_ipv6() from netpollBreno Leitao1-24/+0
2026-05-13netconsole: move netpoll_send_udp() from netpollBreno Leitao1-37/+0
2026-05-13netpoll: expose UDP packet builder helpers for netconsoleBreno Leitao1-7/+13
2026-05-04netpoll: pass buffer size to egress_dev() to avoid MAC truncationBreno Leitao1-10/+13
2026-04-27netpoll: fix IPv6 local-address corruptionBreno Leitao1-1/+18
2026-03-05net: Provide a PREEMPT_RT specific check for netdev_queue::_xmit_lockSebastian Andrzej Siewior1-1/+1
2026-02-21Convert 'alloc_obj' family to use the new default GFP_KERNEL argumentLinus Torvalds1-1/+1
2026-02-21treewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook1-1/+1
2025-11-28net: netpoll: initialize work queue before error checksBreno Leitao1-1/+1
2025-11-10net: netpoll: fix incorrect refcount handling causing incorrect cleanupBreno Leitao1-2/+5
2025-11-04netpoll: Fix deadlock in memory allocation under spinlockBreno Leitao1-5/+2
2025-09-19net: netpoll: use synchronize_net() instead of synchronize_rcu()Breno Leitao1-1/+1
2025-09-19net: netpoll: remove unused netpoll pointer from netpoll_infoBreno Leitao1-1/+0
2025-07-30netpoll: prevent hanging NAPI when netcons gets enabledJakub Kicinski1-0/+7
2025-07-07netpoll: move Ethernet setup to push_eth() helperBreno Leitao1-15/+15
2025-07-07netpoll: factor out UDP header setup into push_udp() helperBreno Leitao1-9/+19
2025-07-07netpoll: factor out IPv4 header setup into push_ipv4() helperBreno Leitao1-26/+36
2025-07-07netpoll: factor out IPv6 header setup into push_ipv6() helperBreno Leitao1-20/+29
2025-07-07netpoll: factor out UDP checksum calculation into helperBreno Leitao1-15/+26
2025-07-07netpoll: Improve code clarity with explicit struct size calculationsBreno Leitao1-6/+6
2025-06-26Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2025-06-23net: netpoll: Initialize UDP checksum field before checksummingBreno Leitao1-1/+1
2025-06-19netpoll: Extract IPv6 address retrieval functionBreno Leitao1-32/+44
2025-06-19netpoll: extract IPv4 address retrieval into helper functionBreno Leitao1-17/+31
2025-06-19netpoll: Extract carrier wait functionBreno Leitao1-12/+16