aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/virtio_net.c
AgeCommit message (Expand)AuthorFilesLines
9 daysMerge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+2
9 daysvirtio-net: avoid unnecessary checksum calculation on guest RXJon Kohler1-1/+2
10 daysvirtio_net: enhance wake/stop tx queue statistics accountingLiming Wu1-18/+26
2025-11-13Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-5/+11
2025-11-13virtio-net: fix incorrect flags recording in big modeXuan Zhuo1-5/+11
2025-11-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-15/+25
2025-11-04virtio-net: fix received length check in big packetsBui Quang Minh1-13/+12
2025-11-04virtio_net: fix alignment for virtio_net_hdr_v1_hashMichael S. Tsirkin1-2/+13
2025-11-04virtio_net: Fix a typo error in virtio_netChu Guangqing1-1/+1
2025-10-23virtio-net: drop the multi-buffer XDP packet in zerocopyBui Quang Minh1-3/+8
2025-10-04Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-14/+14
2025-10-01virtio: rename dma helpersJason Wang1-14/+14
2025-09-18net: virtio_net: add get_rxrings ethtool callback for RX ring queriesBreno Leitao1-12/+3
2025-09-11net: xdp: pass full flags to xdp_update_skb_shared_info()Jakub Kicinski1-4/+3
2025-08-26virtio_net: adjust the execution order of function `virtnet_close` during freezeJunnan Wu1-3/+4
2025-07-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2025-07-17virtio-net: fix recursived rtnl_lock() during probe()Zigit Zo1-1/+1
2025-07-11virtio_net: simplify tx queue wake condition checkLiming Wu1-12/+10
2025-07-10Merge branch 'virtio_udp_tunnel_08_07_2025' of https://github.com/pabeni/linu...Jakub Kicinski1-23/+87
2025-07-09virtio-net: xsk: rx: move the xdp->data adjustment to buf_to_xdp()Bui Quang Minh1-2/+9
2025-07-08virtio_net: enable gso over UDP tunnel support.Paolo Abeni1-21/+64
2025-07-08virtio_net: add supports for extended offloadsPaolo Abeni1-2/+23
2025-07-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni1-41/+70
2025-07-03virtio_net: Enforce minimum TX ring size for reliabilityLaurent Vivier1-0/+6
2025-07-03virtio_net: Cleanup '2+MAX_SKB_FRAGS'Laurent Vivier1-4/+4
2025-07-03virtio-net: xsk: rx: fix the frame's length checkBui Quang Minh1-4/+18
2025-07-03virtio-net: use the check_mergeable_len helperBui Quang Minh1-27/+7
2025-07-03virtio-net: remove redundant truesize check with PAGE_SIZEBui Quang Minh1-4/+3
2025-07-03virtio-net: ensure the received length does not exceed allocated sizeBui Quang Minh1-4/+34
2025-06-12net: drv: virtio: migrate to new RXFH callbacksJakub Kicinski1-29/+18
2025-05-08virtio-net: fix total qstat valuesJakub Kicinski1-0/+4
2025-05-05virtio-net: free xsk_buffs on error in virtnet_xsk_pool_enable()Jakub Kicinski1-2/+6
2025-05-05virtio-net: don't re-enable refill work too early when NAPI is disabledJakub Kicinski1-3/+8
2025-04-22virtio-net: disable delayed refill when pausing rxBui Quang Minh1-12/+57
2025-03-26Merge tag 'net-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds1-116/+149
2025-03-25virtio_net: Allocate rss_hdr with devresAkihiko Odaki1-6/+4
2025-03-25virtio_net: Use new RSS config structsAkihiko Odaki1-74/+43
2025-03-25virtio_net: Fix endian with virtio_net_ctrl_rssAkihiko Odaki1-15/+15
2025-03-10virtio_net: Use persistent NAPI configJoe Damato1-2/+3
2025-03-10virtio-net: Map NAPIs to queuesJoe Damato1-4/+36
2025-03-10virtio-net: Refactor napi_disable pathsJoe Damato1-8/+17
2025-03-10virtio-net: Refactor napi_enable pathsJoe Damato1-16/+21
2025-02-24virtio_net: simplify virtnet_set_affinity()Yury Norov1-5/+7
2025-02-24virtio-net: tweak for better TX performance in NAPI modeJason Wang1-13/+32
2024-12-10virtio_net: ensure netdev_tx_reset_queue is called on bind xsk for txKoichiro Den1-1/+2
2024-12-10virtio_ring: add a func argument 'recycle_done' to virtqueue_reset()Koichiro Den1-2/+2
2024-12-10virtio_net: ensure netdev_tx_reset_queue is called on tx ring resizeKoichiro Den1-1/+11
2024-12-10virtio_ring: add a func argument 'recycle_done' to virtqueue_resize()Koichiro Den1-2/+2
2024-12-10virtio_net: replace vq2rxq with vq2txq where appropriateKoichiro Den1-1/+1
2024-12-10virtio_net: correct netdev_tx_reset_queue() invocation pointKoichiro Den1-1/+9
2024-11-15virtio_net: xdp_features add NETDEV_XDP_ACT_XSK_ZEROCOPYXuan Zhuo1-1/+2
2024-11-15virtio_net: update tx timeout recordXuan Zhuo1-0/+7
2024-11-15virtio_net: xsk: tx: support xmit xsk bufferXuan Zhuo1-11/+168
2024-11-15virtio_net: xsk: prevent disable tx napiXuan Zhuo1-1/+9
2024-11-15virtio_net: xsk: bind/unbind xsk for txXuan Zhuo1-0/+53
2024-11-15virtio_net: refactor the xmit typeXuan Zhuo1-39/+51
2024-11-15virtio_ring: remove API virtqueue_set_dma_premappedXuan Zhuo1-13/+0
2024-11-15virtio-net: rq submits premapped per-bufferXuan Zhuo1-11/+11
2024-11-07Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-19/+100
2024-11-07virtio_net: Update rss when set queuePhilo Lu1-14/+51
2024-11-07virtio_net: Sync rss config to device when virtnet_probePhilo Lu1-0/+9
2024-11-07virtio_net: Add hash_key_length checkPhilo Lu1-0/+6
2024-11-07virtio_net: Support dynamic rss indirection table sizePhilo Lu1-5/+34
2024-11-05virtio_net: rx remove premapped failover codeXuan Zhuo1-46/+44
2024-11-05virtio_net: enable premapped mode for merge and small by defaultXuan Zhuo1-0/+15
2024-11-05virtio_net: big mode skip the unmap checkXuan Zhuo1-2/+2
2024-11-05virtio-net: fix overflow inside virtnet_rq_allocXuan Zhuo1-3/+9
2024-11-03dim: pass dim_sample to net_dim() by referenceCaleb Sander Mateos1-1/+1
2024-10-21virtio_net: fix integer overflow in statsMichael S. Tsirkin1-1/+1
2024-09-26virtio_net: Fix mismatched buf address when unmapping for small packetsWenbo Li1-2/+8
2024-09-12Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-49/+46
2024-09-10virtio_net: disable premapped mode by defaultXuan Zhuo1-18/+0
2024-09-10Revert "virtio_net: big mode skip the unmap check"Xuan Zhuo1-2/+2
2024-09-10Revert "virtio_net: rx remove premapped failover code"Xuan Zhuo1-35/+50
2024-08-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2024-08-15virtio-net: synchronize probe with ndo_set_featuresJason Wang1-5/+5
2024-08-15virtio-net: synchronize operstate with admin state on up/downJason Wang1-28/+50
2024-08-15virtio_net: move netdev_tx_reset_queue() call before RX napi enableJiri Pirko1-1/+1
2024-08-05virtio-net: unbreak vq resizing when coalescing is not negotiatedHeng Qi1-2/+6
2024-08-05virtio-net: check feature before configuring the vq coalescing commandHeng Qi1-0/+6
2024-07-19Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-21/+13
2024-07-17virtio: rename virtio_find_vqs_info() to virtio_find_vqs()Jiri Pirko1-1/+1
2024-07-17virtio_net: convert to use virtio_find_vqs_info()Jiri Pirko1-21/+13
2024-07-14virtio_net: Fix napi_skb_cache_put warningBreno Leitao1-4/+4
2024-07-14virtio_net: xsk: rx: support recv merge modeXuan Zhuo1-0/+144
2024-07-14virtio_net: xsk: rx: support recv small modeXuan Zhuo1-8/+168
2024-07-14virtio_net: xsk: rx: support fill with xsk bufferXuan Zhuo1-4/+66
2024-07-14virtio_net: xsk: support wakeupXuan Zhuo1-0/+24
2024-07-14virtio_net: xsk: bind/unbind xsk for rxXuan Zhuo1-0/+134
2024-07-14virtio_net: separate receive_mergeableXuan Zhuo1-30/+47
2024-07-14virtio_net: separate receive_bufXuan Zhuo1-27/+35
2024-07-14virtio_net: separate virtnet_tx_resize()Xuan Zhuo1-6/+29
2024-07-14virtio_net: separate virtnet_rx_resize()Xuan Zhuo1-8/+21
2024-07-14virtio_net: replace VIRTIO_XDP_HEADROOM by XDP_PACKET_HEADROOMXuan Zhuo1-12/+9
2024-06-25virtio-net: support dim profile fine-tuningHeng Qi1-7/+47
2024-06-25virtio_net: Remove u64_stats_update_begin()/end() for stats fetchLi RongQing1-2/+3
2024-06-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+29
2024-06-19virtio_net: add support for Byte Queue LimitsJiri Pirko1-24/+57
2024-06-19virtio_net: fixing XDP for fully checksummed packets handlingHeng Qi1-1/+19
2024-06-19virtio_net: checksum offloading handling fixHeng Qi1-2/+10
2024-06-01virtio_net: fix a spurious deadlock issueHeng Qi1-20/+16
2024-06-01virtio_net: fix possible dim status unrecoverableHeng Qi1-1/+1
2024-06-01virtio_net: fix missing lock protection on control_buf accessHeng Qi1-1/+3
2024-05-23Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-1/+0
2024-05-22net: virtio: drop owner assignmentKrzysztof Kozlowski1-1/+0
2024-05-16virtio_net: Fix missed rtnl_unlockDaniel Jurgens1-3/+3
2024-05-13virtio_net: remove the misleading commentXuan Zhuo1-1/+0
2024-05-13virtio_net: rx remove premapped failover codeXuan Zhuo1-50/+35
2024-05-13virtio_net: big mode skip the unmap checkXuan Zhuo1-2/+2
2024-05-13virtio_net: Add TX stopped and wake countersDaniel Jurgens1-2/+26
2024-05-10virtio_net: Fix memory leak in virtnet_rx_mod_workDaniel Jurgens1-2/+1
2024-05-07virtio_net: Remove rtnl lock protection of command buffersDaniel Jurgens1-20/+4
2024-05-07virtio_net: Add a lock for per queue RX coalesceDaniel Jurgens1-12/+41
2024-05-07virtio_net: Do DIM update for specified queue onlyDaniel Jurgens1-25/+15
2024-05-07virtio_net: Add a lock for the command VQ.Daniel Jurgens1-1/+10
2024-05-07virtio_net: Remove command data from control_bufDaniel Jurgens1-39/+85
2024-05-07virtio_net: Store RSS setting in virtnet_infoDaniel Jurgens1-20/+20
2024-04-30virtio-net: support queue statXuan Zhuo1-21/+371
2024-04-30virtio_net: add the total stats fieldXuan Zhuo1-12/+69
2024-04-30virtio_net: device stats helpers support driver statsXuan Zhuo1-75/+82
2024-04-30virtio_net: support device statsXuan Zhuo1-4/+472
2024-04-30virtio_net: remove "_queue" from ethtool -SXuan Zhuo1-2/+2
2024-04-30virtio_net: introduce ability to get reply info from deviceXuan Zhuo1-7/+17
2024-04-18virtio_net: Support RX hash XDP hintLiang Chen1-0/+43
2024-04-07virtio_net: Do not send RSS key if it is not supportedBreno Leitao1-4/+22
2024-03-19virtio_net: rename free_old_xmit_skbs to free_old_xmitXuan Zhuo1-5/+5
2024-03-19virtio_net: unify the code for recycling the xmit ptrXuan Zhuo1-43/+39
2024-03-19virtio-net: add cond_resched() to the command waiting loopJason Wang1-1/+3
2024-03-19virtio-net: convert rx mode setting to use workqueueJason Wang1-3/+52
2024-01-11virtio_net: Fix "ā€˜%d’ directive writing between 1 and 11 bytes into a reg...Zhu Yanjun1-4/+5
2024-01-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-30/+30
2024-01-03virtio_net: fix missing dma unmap for resizeXuan Zhuo1-30/+30
2023-12-13net: ethtool: pass a pointer to parameters to get/set_rxfh ethtool opsAhmed Zaki1-13/+16
2023-12-13virtio-net: support rx netdimHeng Qi1-14/+162
2023-12-13virtio-net: extract virtqueue coalescig cmd for reuseHeng Qi1-42/+64
2023-12-13virtio-net: separate rx/tx coalescing moderation cmdsHeng Qi1-3/+28
2023-12-13virtio-net: returns whether napi is completeHeng Qi1-1/+5
2023-10-27virtio_net: use u64_stats_t infra to avoid data-racesEric Dumazet1-59/+65
2023-10-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-7/+7
2023-10-15virtio_net: fix the missing of the dma cpu syncXuan Zhuo1-7/+7
2023-10-11virtio-net: a tiny comment updateHeng Qi1-1/+1
2023-10-11virtio-net: fix the vq coalescing setting for vq resizeHeng Qi1-0/+27
2023-10-11virtio-net: fix per queue coalescing parameter settingHeng Qi1-20/+16
2023-10-11virtio-net: consistently save parameters for per-queueHeng Qi1-0/+9
2023-10-11virtio-net: fix mismatch of getting tx-framesHeng Qi1-1/+1
2023-10-11virtio-net: initially change the value of tx-framesHeng Qi1-7/+21
2023-10-01virtio_net: avoid data-races on dev->stats fieldsEric Dumazet1-15/+15
2023-09-04Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-26/+202
2023-09-03virtio_net: merge dma operations when filling mergeable buffersXuan Zhuo1-26/+202
2023-08-23virtio_net: Introduce skb_vnet_common_hdr to avoid typecastingFeng Liu1-9/+18
2023-08-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+3
2023-08-18Merge tag 'net-6.5-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds1-2/+2
2023-08-11virtio-net: set queues after driver_okJason Wang1-2/+2
2023-08-10virtio-net: Zero max_tx_vq field for VIRTIO_NET_CTRL_MQ_HASH_CONFIG caseHawkins Jiawei1-1/+1
2023-08-03Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski1-0/+1
2023-08-03net: move struct netdev_rx_queue out of netdevice.hJakub Kicinski1-0/+1
2023-08-01virtio_net: enable per queue interrupt coalesce featureGavin Li1-0/+3
2023-08-01virtio_net: support per queue interrupt coalesce commandGavin Li1-8/+141
2023-08-01virtio_net: extract interrupt coalescing settings to a structureGavin Li1-16/+19
2023-07-26virtio-net: fix race between set queues and probeJason Wang1-2/+2
2023-06-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-8/+8
2023-06-06virtio_net: use control_buf for coalesce paramsBrett Creeley1-8/+8
2023-05-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-17/+44
2023-05-15virtio_net: Fix error unwinding of XDP initializationFeng Liu1-17/+44
2023-05-13net: introduce and use skb_frag_fill_page_desc()Yunsheng Lin1-3/+1
2023-05-09virtio_net: introduce virtnet_build_skb()Xuan Zhuo1-13/+21
2023-05-09virtio_net: introduce receive_small_build_xdpXuan Zhuo1-17/+31
2023-05-09virtio_net: small: remove skip_xdpXuan Zhuo1-14/+12
2023-05-09virtio_net: small: avoid code duplication in xdp scenariosXuan Zhuo1-4/+8
2023-05-09virtio_net: small: remove the deltaXuan Zhuo1-5/+1
2023-05-09virtio_net: introduce receive_small_xdp()Xuan Zhuo1-65/+100
2023-05-09virtio_net: merge: remove skip_xdpXuan Zhuo1-13/+10
2023-05-09virtio_net: introduce receive_mergeable_xdp()Xuan Zhuo1-41/+64
2023-05-09virtio_net: virtnet_build_xdp_buff_mrg() auto release xdp shinfoXuan Zhuo1-3/+7
2023-05-09virtio_net: separate the logic of freeing the rest mergeable bufXuan Zhuo1-12/+24
2023-05-09virtio_net: separate the logic of freeing xdp shinfoXuan Zhuo1-11/+16
2023-05-09virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdpXuan Zhuo1-60/+58
2023-05-09virtio_net: optimize mergeable_xdp_get_buf()Xuan Zhuo1-15/+14
2023-05-09virtio_net: introduce mergeable_xdp_get_buf()Xuan Zhuo1-56/+79
2023-05-09virtio_net: mergeable xdp: put old page immediatelyXuan Zhuo1-12/+7
2023-05-05virtio_net: suppress cpu stall when free_unused_bufsWenliang Wang1-0/+2
2023-04-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-2/+6
2023-04-17virtio_net: bugfix overflow inside xdp_linearize_page()Xuan Zhuo1-2/+6
2023-03-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-76/+95
2023-03-16virtio_net: free xdp shinfo frags when build_skb_from_xdp_buff() failsXuan Zhuo1-1/+4
2023-03-16virtio_net: fix page_to_skb() miss headroomXuan Zhuo1-5/+6
2023-03-13net: virtio_net: implement exact header length guest featureJiri Pirko1-2/+4
2023-03-10virtio_net: add checking sq is full inside xdp xmitXuan Zhuo1-0/+3
2023-03-10virtio_net: separate the logic of checking whether sq is fullXuan Zhuo1-24/+36
2023-03-10virtio_net: reorder some funcsXuan Zhuo1-46/+46
2023-02-10Daniel Borkmann says:Jakub Kicinski1-1/+7
2023-02-07virtio_net: Update xdp_features with xdp multi-buffLorenzo Bianconi1-2/+4
2023-02-06virtio-net: Maintain reverse cleanup orderParav Pandit1-1/+1
2023-02-02drivers: net: turn on XDP featuresMarek Majtyka1-0/+4
2023-02-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2023-02-02virtio-net: Keep stop() to follow mirror sequence of open()Parav Pandit1-1/+1
2023-02-01virtio-net: fix possible unsigned integer overflowHeng Qi1-6/+9
2023-02-01virtio_net: notify MAC address change on device initializationLaurent Vivier1-0/+20
2023-02-01virtio_net: disable VIRTIO_NET_F_STANDBY if VIRTIO_NET_F_MAC is not setLaurent Vivier1-0/+6
2023-01-27Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+3