1 /* A network driver using virtio.
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include <linux/netdevice.h>
20 #include <linux/etherdevice.h>
21 #include <linux/ethtool.h>
22 #include <linux/module.h>
23 #include <linux/virtio.h>
24 #include <linux/virtio_net.h>
25 #include <linux/bpf.h>
26 #include <linux/bpf_trace.h>
27 #include <linux/scatterlist.h>
28 #include <linux/if_vlan.h>
29 #include <linux/slab.h>
30 #include <linux/cpu.h>
31 #include <linux/average.h>
32 #include <linux/filter.h>
33 #include <net/route.h>
36 static int napi_weight
= NAPI_POLL_WEIGHT
;
37 module_param(napi_weight
, int, 0444);
39 static bool csum
= true, gso
= true, napi_tx
;
40 module_param(csum
, bool, 0444);
41 module_param(gso
, bool, 0444);
42 module_param(napi_tx
, bool, 0644);
44 /* FIXME: MTU in config. */
45 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
46 #define GOOD_COPY_LEN 128
48 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
50 /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
51 #define VIRTIO_XDP_HEADROOM 256
53 /* RX packet size EWMA. The average packet size is used to determine the packet
54 * buffer size when refilling RX rings. As the entire RX ring may be refilled
55 * at once, the weight is chosen so that the EWMA will be insensitive to short-
56 * term, transient changes in packet size.
58 DECLARE_EWMA(pkt_len
, 0, 64)
60 #define VIRTNET_DRIVER_VERSION "1.0.0"
62 static const unsigned long guest_offloads
[] = {
63 VIRTIO_NET_F_GUEST_TSO4
,
64 VIRTIO_NET_F_GUEST_TSO6
,
65 VIRTIO_NET_F_GUEST_ECN
,
66 VIRTIO_NET_F_GUEST_UFO
69 struct virtnet_stat_desc
{
70 char desc
[ETH_GSTRING_LEN
];
74 struct virtnet_sq_stats
{
75 struct u64_stats_sync syncp
;
80 struct virtnet_rq_stats
{
81 struct u64_stats_sync syncp
;
86 #define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
87 #define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
89 static const struct virtnet_stat_desc virtnet_sq_stats_desc
[] = {
90 { "packets", VIRTNET_SQ_STAT(packets
) },
91 { "bytes", VIRTNET_SQ_STAT(bytes
) },
94 static const struct virtnet_stat_desc virtnet_rq_stats_desc
[] = {
95 { "packets", VIRTNET_RQ_STAT(packets
) },
96 { "bytes", VIRTNET_RQ_STAT(bytes
) },
99 #define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
100 #define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
102 /* Internal representation of a send virtqueue */
104 /* Virtqueue associated with this send _queue */
105 struct virtqueue
*vq
;
107 /* TX: fragments + linear part + virtio header */
108 struct scatterlist sg
[MAX_SKB_FRAGS
+ 2];
110 /* Name of the send queue: output.$index */
113 struct virtnet_sq_stats stats
;
115 struct napi_struct napi
;
118 /* Internal representation of a receive virtqueue */
119 struct receive_queue
{
120 /* Virtqueue associated with this receive_queue */
121 struct virtqueue
*vq
;
123 struct napi_struct napi
;
125 struct bpf_prog __rcu
*xdp_prog
;
127 struct virtnet_rq_stats stats
;
129 /* Chain pages by the private ptr. */
132 /* Average packet length for mergeable receive buffers. */
133 struct ewma_pkt_len mrg_avg_pkt_len
;
135 /* Page frag for packet buffer allocation. */
136 struct page_frag alloc_frag
;
138 /* RX: fragments + linear part + virtio header */
139 struct scatterlist sg
[MAX_SKB_FRAGS
+ 2];
141 /* Min single buffer size for mergeable buffers case. */
142 unsigned int min_buf_len
;
144 /* Name of this receive queue: input.$index */
147 struct xdp_rxq_info xdp_rxq
;
150 /* Control VQ buffers: protected by the rtnl lock */
152 struct virtio_net_ctrl_hdr hdr
;
153 virtio_net_ctrl_ack status
;
154 struct virtio_net_ctrl_mq mq
;
161 struct virtnet_info
{
162 struct virtio_device
*vdev
;
163 struct virtqueue
*cvq
;
164 struct net_device
*dev
;
165 struct send_queue
*sq
;
166 struct receive_queue
*rq
;
169 /* Max # of queue pairs supported by the device */
172 /* # of queue pairs currently used by the driver */
173 u16 curr_queue_pairs
;
175 /* # of XDP queue pairs currently used by the driver */
178 /* I like... big packets and I cannot lie! */
181 /* Host will merge rx buffers for big packets (shake it! shake it!) */
182 bool mergeable_rx_bufs
;
184 /* Has control virtqueue */
187 /* Host can handle any s/g split between our header and packet data */
190 /* Packet virtio header size */
193 /* Work struct for refilling if we run low on memory. */
194 struct delayed_work refill
;
196 /* Work struct for config space updates */
197 struct work_struct config_work
;
199 /* Does the affinity hint is set for virtqueues? */
200 bool affinity_hint_set
;
202 /* CPU hotplug instances for online & dead */
203 struct hlist_node node
;
204 struct hlist_node node_dead
;
206 struct control_buf
*ctrl
;
208 /* Ethtool settings */
212 unsigned long guest_offloads
;
215 struct padded_vnet_hdr
{
216 struct virtio_net_hdr_mrg_rxbuf hdr
;
218 * hdr is in a separate sg buffer, and data sg buffer shares same page
219 * with this header sg. This padding makes next sg 16 byte aligned
225 /* Converting between virtqueue no. and kernel tx/rx queue no.
226 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
228 static int vq2txq(struct virtqueue
*vq
)
230 return (vq
->index
- 1) / 2;
233 static int txq2vq(int txq
)
238 static int vq2rxq(struct virtqueue
*vq
)
240 return vq
->index
/ 2;
243 static int rxq2vq(int rxq
)
248 static inline struct virtio_net_hdr_mrg_rxbuf
*skb_vnet_hdr(struct sk_buff
*skb
)
250 return (struct virtio_net_hdr_mrg_rxbuf
*)skb
->cb
;
254 * private is used to chain pages for big packets, put the whole
255 * most recent used list in the beginning for reuse
257 static void give_pages(struct receive_queue
*rq
, struct page
*page
)
261 /* Find end of list, sew whole thing into vi->rq.pages. */
262 for (end
= page
; end
->private; end
= (struct page
*)end
->private);
263 end
->private = (unsigned long)rq
->pages
;
267 static struct page
*get_a_page(struct receive_queue
*rq
, gfp_t gfp_mask
)
269 struct page
*p
= rq
->pages
;
272 rq
->pages
= (struct page
*)p
->private;
273 /* clear private here, it is used to chain pages */
276 p
= alloc_page(gfp_mask
);
280 static void virtqueue_napi_schedule(struct napi_struct
*napi
,
281 struct virtqueue
*vq
)
283 if (napi_schedule_prep(napi
)) {
284 virtqueue_disable_cb(vq
);
285 __napi_schedule(napi
);
289 static void virtqueue_napi_complete(struct napi_struct
*napi
,
290 struct virtqueue
*vq
, int processed
)
294 opaque
= virtqueue_enable_cb_prepare(vq
);
295 if (napi_complete_done(napi
, processed
)) {
296 if (unlikely(virtqueue_poll(vq
, opaque
)))
297 virtqueue_napi_schedule(napi
, vq
);
299 virtqueue_disable_cb(vq
);
303 static void skb_xmit_done(struct virtqueue
*vq
)
305 struct virtnet_info
*vi
= vq
->vdev
->priv
;
306 struct napi_struct
*napi
= &vi
->sq
[vq2txq(vq
)].napi
;
308 /* Suppress further interrupts. */
309 virtqueue_disable_cb(vq
);
312 virtqueue_napi_schedule(napi
, vq
);
314 /* We were probably waiting for more output buffers. */
315 netif_wake_subqueue(vi
->dev
, vq2txq(vq
));
318 #define MRG_CTX_HEADER_SHIFT 22
319 static void *mergeable_len_to_ctx(unsigned int truesize
,
320 unsigned int headroom
)
322 return (void *)(unsigned long)((headroom
<< MRG_CTX_HEADER_SHIFT
) | truesize
);
325 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx
)
327 return (unsigned long)mrg_ctx
>> MRG_CTX_HEADER_SHIFT
;
330 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx
)
332 return (unsigned long)mrg_ctx
& ((1 << MRG_CTX_HEADER_SHIFT
) - 1);
335 /* Called from bottom half context */
336 static struct sk_buff
*page_to_skb(struct virtnet_info
*vi
,
337 struct receive_queue
*rq
,
338 struct page
*page
, unsigned int offset
,
339 unsigned int len
, unsigned int truesize
)
342 struct virtio_net_hdr_mrg_rxbuf
*hdr
;
343 unsigned int copy
, hdr_len
, hdr_padded_len
;
346 p
= page_address(page
) + offset
;
348 /* copy small packet so we can reuse these pages for small data */
349 skb
= napi_alloc_skb(&rq
->napi
, GOOD_COPY_LEN
);
353 hdr
= skb_vnet_hdr(skb
);
355 hdr_len
= vi
->hdr_len
;
356 if (vi
->mergeable_rx_bufs
)
357 hdr_padded_len
= sizeof(*hdr
);
359 hdr_padded_len
= sizeof(struct padded_vnet_hdr
);
361 memcpy(hdr
, p
, hdr_len
);
364 offset
+= hdr_padded_len
;
368 if (copy
> skb_tailroom(skb
))
369 copy
= skb_tailroom(skb
);
370 skb_put_data(skb
, p
, copy
);
375 if (vi
->mergeable_rx_bufs
) {
377 skb_add_rx_frag(skb
, 0, page
, offset
, len
, truesize
);
384 * Verify that we can indeed put this data into a skb.
385 * This is here to handle cases when the device erroneously
386 * tries to receive more than is possible. This is usually
387 * the case of a broken device.
389 if (unlikely(len
> MAX_SKB_FRAGS
* PAGE_SIZE
)) {
390 net_dbg_ratelimited("%s: too much data\n", skb
->dev
->name
);
394 BUG_ON(offset
>= PAGE_SIZE
);
396 unsigned int frag_size
= min((unsigned)PAGE_SIZE
- offset
, len
);
397 skb_add_rx_frag(skb
, skb_shinfo(skb
)->nr_frags
, page
, offset
,
398 frag_size
, truesize
);
400 page
= (struct page
*)page
->private;
405 give_pages(rq
, page
);
410 static void virtnet_xdp_flush(struct net_device
*dev
)
412 struct virtnet_info
*vi
= netdev_priv(dev
);
413 struct send_queue
*sq
;
416 qp
= vi
->curr_queue_pairs
- vi
->xdp_queue_pairs
+ smp_processor_id();
419 virtqueue_kick(sq
->vq
);
422 static bool __virtnet_xdp_xmit(struct virtnet_info
*vi
,
423 struct xdp_buff
*xdp
)
425 struct virtio_net_hdr_mrg_rxbuf
*hdr
;
427 struct send_queue
*sq
;
432 qp
= vi
->curr_queue_pairs
- vi
->xdp_queue_pairs
+ smp_processor_id();
435 /* Free up any pending old buffers before queueing new ones. */
436 while ((xdp_sent
= virtqueue_get_buf(sq
->vq
, &len
)) != NULL
) {
437 struct page
*sent_page
= virt_to_head_page(xdp_sent
);
442 xdp
->data
-= vi
->hdr_len
;
443 /* Zero header and leave csum up to XDP layers */
445 memset(hdr
, 0, vi
->hdr_len
);
447 sg_init_one(sq
->sg
, xdp
->data
, xdp
->data_end
- xdp
->data
);
449 err
= virtqueue_add_outbuf(sq
->vq
, sq
->sg
, 1, xdp
->data
, GFP_ATOMIC
);
451 return false; /* Caller handle free/refcnt */
456 static int virtnet_xdp_xmit(struct net_device
*dev
, struct xdp_buff
*xdp
)
458 struct virtnet_info
*vi
= netdev_priv(dev
);
459 struct receive_queue
*rq
= vi
->rq
;
460 struct bpf_prog
*xdp_prog
;
463 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
464 * indicate XDP resources have been successfully allocated.
466 xdp_prog
= rcu_dereference(rq
->xdp_prog
);
470 sent
= __virtnet_xdp_xmit(vi
, xdp
);
476 static unsigned int virtnet_get_headroom(struct virtnet_info
*vi
)
478 return vi
->xdp_queue_pairs
? VIRTIO_XDP_HEADROOM
: 0;
481 /* We copy the packet for XDP in the following cases:
483 * 1) Packet is scattered across multiple rx buffers.
484 * 2) Headroom space is insufficient.
486 * This is inefficient but it's a temporary condition that
487 * we hit right after XDP is enabled and until queue is refilled
488 * with large buffers with sufficient headroom - so it should affect
489 * at most queue size packets.
490 * Afterwards, the conditions to enable
491 * XDP should preclude the underlying device from sending packets
492 * across multiple buffers (num_buf > 1), and we make sure buffers
493 * have enough headroom.
495 static struct page
*xdp_linearize_page(struct receive_queue
*rq
,
502 struct page
*page
= alloc_page(GFP_ATOMIC
);
507 memcpy(page_address(page
) + page_off
, page_address(p
) + offset
, *len
);
511 int tailroom
= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
516 buf
= virtqueue_get_buf(rq
->vq
, &buflen
);
520 p
= virt_to_head_page(buf
);
521 off
= buf
- page_address(p
);
523 /* guard against a misconfigured or uncooperative backend that
524 * is sending packet larger than the MTU.
526 if ((page_off
+ buflen
+ tailroom
) > PAGE_SIZE
) {
531 memcpy(page_address(page
) + page_off
,
532 page_address(p
) + off
, buflen
);
537 /* Headroom does not contribute to packet length */
538 *len
= page_off
- VIRTIO_XDP_HEADROOM
;
541 __free_pages(page
, 0);
545 static struct sk_buff
*receive_small(struct net_device
*dev
,
546 struct virtnet_info
*vi
,
547 struct receive_queue
*rq
,
548 void *buf
, void *ctx
,
553 struct bpf_prog
*xdp_prog
;
554 unsigned int xdp_headroom
= (unsigned long)ctx
;
555 unsigned int header_offset
= VIRTNET_RX_PAD
+ xdp_headroom
;
556 unsigned int headroom
= vi
->hdr_len
+ header_offset
;
557 unsigned int buflen
= SKB_DATA_ALIGN(GOOD_PACKET_LEN
+ headroom
) +
558 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
559 struct page
*page
= virt_to_head_page(buf
);
560 unsigned int delta
= 0;
561 struct page
*xdp_page
;
568 xdp_prog
= rcu_dereference(rq
->xdp_prog
);
570 struct virtio_net_hdr_mrg_rxbuf
*hdr
= buf
+ header_offset
;
575 if (unlikely(hdr
->hdr
.gso_type
))
578 if (unlikely(xdp_headroom
< virtnet_get_headroom(vi
))) {
579 int offset
= buf
- page_address(page
) + header_offset
;
580 unsigned int tlen
= len
+ vi
->hdr_len
;
583 xdp_headroom
= virtnet_get_headroom(vi
);
584 header_offset
= VIRTNET_RX_PAD
+ xdp_headroom
;
585 headroom
= vi
->hdr_len
+ header_offset
;
586 buflen
= SKB_DATA_ALIGN(GOOD_PACKET_LEN
+ headroom
) +
587 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
588 xdp_page
= xdp_linearize_page(rq
, &num_buf
, page
,
589 offset
, header_offset
,
594 buf
= page_address(xdp_page
);
599 xdp
.data_hard_start
= buf
+ VIRTNET_RX_PAD
+ vi
->hdr_len
;
600 xdp
.data
= xdp
.data_hard_start
+ xdp_headroom
;
601 xdp_set_data_meta_invalid(&xdp
);
602 xdp
.data_end
= xdp
.data
+ len
;
603 xdp
.rxq
= &rq
->xdp_rxq
;
604 orig_data
= xdp
.data
;
605 act
= bpf_prog_run_xdp(xdp_prog
, &xdp
);
609 /* Recalculate length in case bpf program changed it */
610 delta
= orig_data
- xdp
.data
;
613 sent
= __virtnet_xdp_xmit(vi
, &xdp
);
614 if (unlikely(!sent
)) {
615 trace_xdp_exception(vi
->dev
, xdp_prog
, act
);
622 err
= xdp_do_redirect(dev
, &xdp
, xdp_prog
);
629 bpf_warn_invalid_xdp_action(act
);
631 trace_xdp_exception(vi
->dev
, xdp_prog
, act
);
638 skb
= build_skb(buf
, buflen
);
643 skb_reserve(skb
, headroom
- delta
);
644 skb_put(skb
, len
+ delta
);
646 buf
+= header_offset
;
647 memcpy(skb_vnet_hdr(skb
), buf
, vi
->hdr_len
);
648 } /* keep zeroed vnet hdr since packet was changed by bpf */
655 dev
->stats
.rx_dropped
++;
661 static struct sk_buff
*receive_big(struct net_device
*dev
,
662 struct virtnet_info
*vi
,
663 struct receive_queue
*rq
,
667 struct page
*page
= buf
;
668 struct sk_buff
*skb
= page_to_skb(vi
, rq
, page
, 0, len
, PAGE_SIZE
);
676 dev
->stats
.rx_dropped
++;
677 give_pages(rq
, page
);
681 static struct sk_buff
*receive_mergeable(struct net_device
*dev
,
682 struct virtnet_info
*vi
,
683 struct receive_queue
*rq
,
689 struct virtio_net_hdr_mrg_rxbuf
*hdr
= buf
;
690 u16 num_buf
= virtio16_to_cpu(vi
->vdev
, hdr
->num_buffers
);
691 struct page
*page
= virt_to_head_page(buf
);
692 int offset
= buf
- page_address(page
);
693 struct sk_buff
*head_skb
, *curr_skb
;
694 struct bpf_prog
*xdp_prog
;
695 unsigned int truesize
;
696 unsigned int headroom
= mergeable_ctx_to_headroom(ctx
);
703 xdp_prog
= rcu_dereference(rq
->xdp_prog
);
705 struct page
*xdp_page
;
710 /* This happens when rx buffer size is underestimated
711 * or headroom is not enough because of the buffer
712 * was refilled before XDP is set. This should only
713 * happen for the first several packets, so we don't
714 * care much about its performance.
716 if (unlikely(num_buf
> 1 ||
717 headroom
< virtnet_get_headroom(vi
))) {
718 /* linearize data for XDP */
719 xdp_page
= xdp_linearize_page(rq
, &num_buf
,
725 offset
= VIRTIO_XDP_HEADROOM
;
730 /* Transient failure which in theory could occur if
731 * in-flight packets from before XDP was enabled reach
732 * the receive path after XDP is loaded. In practice I
733 * was not able to create this condition.
735 if (unlikely(hdr
->hdr
.gso_type
))
738 /* Allow consuming headroom but reserve enough space to push
739 * the descriptor on if we get an XDP_TX return code.
741 data
= page_address(xdp_page
) + offset
;
742 xdp
.data_hard_start
= data
- VIRTIO_XDP_HEADROOM
+ vi
->hdr_len
;
743 xdp
.data
= data
+ vi
->hdr_len
;
744 xdp_set_data_meta_invalid(&xdp
);
745 xdp
.data_end
= xdp
.data
+ (len
- vi
->hdr_len
);
746 xdp
.rxq
= &rq
->xdp_rxq
;
748 act
= bpf_prog_run_xdp(xdp_prog
, &xdp
);
752 /* recalculate offset to account for any header
753 * adjustments. Note other cases do not build an
754 * skb and avoid using offset
757 page_address(xdp_page
) - vi
->hdr_len
;
759 /* We can only create skb based on xdp_page. */
760 if (unlikely(xdp_page
!= page
)) {
763 head_skb
= page_to_skb(vi
, rq
, xdp_page
,
764 offset
, len
, PAGE_SIZE
);
769 sent
= __virtnet_xdp_xmit(vi
, &xdp
);
770 if (unlikely(!sent
)) {
771 trace_xdp_exception(vi
->dev
, xdp_prog
, act
);
772 if (unlikely(xdp_page
!= page
))
777 if (unlikely(xdp_page
!= page
))
782 err
= xdp_do_redirect(dev
, &xdp
, xdp_prog
);
784 if (unlikely(xdp_page
!= page
))
789 if (unlikely(xdp_page
!= page
))
794 bpf_warn_invalid_xdp_action(act
);
796 trace_xdp_exception(vi
->dev
, xdp_prog
, act
);
798 if (unlikely(xdp_page
!= page
))
799 __free_pages(xdp_page
, 0);
805 truesize
= mergeable_ctx_to_truesize(ctx
);
806 if (unlikely(len
> truesize
)) {
807 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
808 dev
->name
, len
, (unsigned long)ctx
);
809 dev
->stats
.rx_length_errors
++;
813 head_skb
= page_to_skb(vi
, rq
, page
, offset
, len
, truesize
);
816 if (unlikely(!curr_skb
))
821 buf
= virtqueue_get_buf_ctx(rq
->vq
, &len
, &ctx
);
822 if (unlikely(!buf
)) {
823 pr_debug("%s: rx error: %d buffers out of %d missing\n",
825 virtio16_to_cpu(vi
->vdev
,
827 dev
->stats
.rx_length_errors
++;
831 page
= virt_to_head_page(buf
);
833 truesize
= mergeable_ctx_to_truesize(ctx
);
834 if (unlikely(len
> truesize
)) {
835 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
836 dev
->name
, len
, (unsigned long)ctx
);
837 dev
->stats
.rx_length_errors
++;
841 num_skb_frags
= skb_shinfo(curr_skb
)->nr_frags
;
842 if (unlikely(num_skb_frags
== MAX_SKB_FRAGS
)) {
843 struct sk_buff
*nskb
= alloc_skb(0, GFP_ATOMIC
);
847 if (curr_skb
== head_skb
)
848 skb_shinfo(curr_skb
)->frag_list
= nskb
;
850 curr_skb
->next
= nskb
;
852 head_skb
->truesize
+= nskb
->truesize
;
855 if (curr_skb
!= head_skb
) {
856 head_skb
->data_len
+= len
;
857 head_skb
->len
+= len
;
858 head_skb
->truesize
+= truesize
;
860 offset
= buf
- page_address(page
);
861 if (skb_can_coalesce(curr_skb
, num_skb_frags
, page
, offset
)) {
863 skb_coalesce_rx_frag(curr_skb
, num_skb_frags
- 1,
866 skb_add_rx_frag(curr_skb
, num_skb_frags
, page
,
867 offset
, len
, truesize
);
871 ewma_pkt_len_add(&rq
->mrg_avg_pkt_len
, head_skb
->len
);
879 buf
= virtqueue_get_buf(rq
->vq
, &len
);
880 if (unlikely(!buf
)) {
881 pr_debug("%s: rx error: %d buffers missing\n",
883 dev
->stats
.rx_length_errors
++;
886 page
= virt_to_head_page(buf
);
890 dev
->stats
.rx_dropped
++;
891 dev_kfree_skb(head_skb
);
896 static int receive_buf(struct virtnet_info
*vi
, struct receive_queue
*rq
,
897 void *buf
, unsigned int len
, void **ctx
, bool *xdp_xmit
)
899 struct net_device
*dev
= vi
->dev
;
901 struct virtio_net_hdr_mrg_rxbuf
*hdr
;
904 if (unlikely(len
< vi
->hdr_len
+ ETH_HLEN
)) {
905 pr_debug("%s: short packet %i\n", dev
->name
, len
);
906 dev
->stats
.rx_length_errors
++;
907 if (vi
->mergeable_rx_bufs
) {
908 put_page(virt_to_head_page(buf
));
909 } else if (vi
->big_packets
) {
912 put_page(virt_to_head_page(buf
));
917 if (vi
->mergeable_rx_bufs
)
918 skb
= receive_mergeable(dev
, vi
, rq
, buf
, ctx
, len
, xdp_xmit
);
919 else if (vi
->big_packets
)
920 skb
= receive_big(dev
, vi
, rq
, buf
, len
);
922 skb
= receive_small(dev
, vi
, rq
, buf
, ctx
, len
, xdp_xmit
);
927 hdr
= skb_vnet_hdr(skb
);
931 if (hdr
->hdr
.flags
& VIRTIO_NET_HDR_F_DATA_VALID
)
932 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
934 if (virtio_net_hdr_to_skb(skb
, &hdr
->hdr
,
935 virtio_is_little_endian(vi
->vdev
))) {
936 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
937 dev
->name
, hdr
->hdr
.gso_type
,
942 skb
->protocol
= eth_type_trans(skb
, dev
);
943 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
944 ntohs(skb
->protocol
), skb
->len
, skb
->pkt_type
);
946 napi_gro_receive(&rq
->napi
, skb
);
950 dev
->stats
.rx_frame_errors
++;
955 /* Unlike mergeable buffers, all buffers are allocated to the
956 * same size, except for the headroom. For this reason we do
957 * not need to use mergeable_len_to_ctx here - it is enough
958 * to store the headroom as the context ignoring the truesize.
960 static int add_recvbuf_small(struct virtnet_info
*vi
, struct receive_queue
*rq
,
963 struct page_frag
*alloc_frag
= &rq
->alloc_frag
;
965 unsigned int xdp_headroom
= virtnet_get_headroom(vi
);
966 void *ctx
= (void *)(unsigned long)xdp_headroom
;
967 int len
= vi
->hdr_len
+ VIRTNET_RX_PAD
+ GOOD_PACKET_LEN
+ xdp_headroom
;
970 len
= SKB_DATA_ALIGN(len
) +
971 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
972 if (unlikely(!skb_page_frag_refill(len
, alloc_frag
, gfp
)))
975 buf
= (char *)page_address(alloc_frag
->page
) + alloc_frag
->offset
;
976 get_page(alloc_frag
->page
);
977 alloc_frag
->offset
+= len
;
978 sg_init_one(rq
->sg
, buf
+ VIRTNET_RX_PAD
+ xdp_headroom
,
979 vi
->hdr_len
+ GOOD_PACKET_LEN
);
980 err
= virtqueue_add_inbuf_ctx(rq
->vq
, rq
->sg
, 1, buf
, ctx
, gfp
);
982 put_page(virt_to_head_page(buf
));
986 static int add_recvbuf_big(struct virtnet_info
*vi
, struct receive_queue
*rq
,
989 struct page
*first
, *list
= NULL
;
993 sg_init_table(rq
->sg
, MAX_SKB_FRAGS
+ 2);
995 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
996 for (i
= MAX_SKB_FRAGS
+ 1; i
> 1; --i
) {
997 first
= get_a_page(rq
, gfp
);
1000 give_pages(rq
, list
);
1003 sg_set_buf(&rq
->sg
[i
], page_address(first
), PAGE_SIZE
);
1005 /* chain new page in list head to match sg */
1006 first
->private = (unsigned long)list
;
1010 first
= get_a_page(rq
, gfp
);
1012 give_pages(rq
, list
);
1015 p
= page_address(first
);
1017 /* rq->sg[0], rq->sg[1] share the same page */
1018 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1019 sg_set_buf(&rq
->sg
[0], p
, vi
->hdr_len
);
1021 /* rq->sg[1] for data packet, from offset */
1022 offset
= sizeof(struct padded_vnet_hdr
);
1023 sg_set_buf(&rq
->sg
[1], p
+ offset
, PAGE_SIZE
- offset
);
1025 /* chain first in list head */
1026 first
->private = (unsigned long)list
;
1027 err
= virtqueue_add_inbuf(rq
->vq
, rq
->sg
, MAX_SKB_FRAGS
+ 2,
1030 give_pages(rq
, first
);
1035 static unsigned int get_mergeable_buf_len(struct receive_queue
*rq
,
1036 struct ewma_pkt_len
*avg_pkt_len
,
1039 const size_t hdr_len
= sizeof(struct virtio_net_hdr_mrg_rxbuf
);
1043 return PAGE_SIZE
- room
;
1045 len
= hdr_len
+ clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len
),
1046 rq
->min_buf_len
, PAGE_SIZE
- hdr_len
);
1048 return ALIGN(len
, L1_CACHE_BYTES
);
1051 static int add_recvbuf_mergeable(struct virtnet_info
*vi
,
1052 struct receive_queue
*rq
, gfp_t gfp
)
1054 struct page_frag
*alloc_frag
= &rq
->alloc_frag
;
1055 unsigned int headroom
= virtnet_get_headroom(vi
);
1056 unsigned int tailroom
= headroom
? sizeof(struct skb_shared_info
) : 0;
1057 unsigned int room
= SKB_DATA_ALIGN(headroom
+ tailroom
);
1061 unsigned int len
, hole
;
1063 /* Extra tailroom is needed to satisfy XDP's assumption. This
1064 * means rx frags coalescing won't work, but consider we've
1065 * disabled GSO for XDP, it won't be a big issue.
1067 len
= get_mergeable_buf_len(rq
, &rq
->mrg_avg_pkt_len
, room
);
1068 if (unlikely(!skb_page_frag_refill(len
+ room
, alloc_frag
, gfp
)))
1071 buf
= (char *)page_address(alloc_frag
->page
) + alloc_frag
->offset
;
1072 buf
+= headroom
; /* advance address leaving hole at front of pkt */
1073 get_page(alloc_frag
->page
);
1074 alloc_frag
->offset
+= len
+ room
;
1075 hole
= alloc_frag
->size
- alloc_frag
->offset
;
1076 if (hole
< len
+ room
) {
1077 /* To avoid internal fragmentation, if there is very likely not
1078 * enough space for another buffer, add the remaining space to
1079 * the current buffer.
1082 alloc_frag
->offset
+= hole
;
1085 sg_init_one(rq
->sg
, buf
, len
);
1086 ctx
= mergeable_len_to_ctx(len
, headroom
);
1087 err
= virtqueue_add_inbuf_ctx(rq
->vq
, rq
->sg
, 1, buf
, ctx
, gfp
);
1089 put_page(virt_to_head_page(buf
));
1095 * Returns false if we couldn't fill entirely (OOM).
1097 * Normally run in the receive path, but can also be run from ndo_open
1098 * before we're receiving packets, or from refill_work which is
1099 * careful to disable receiving (using napi_disable).
1101 static bool try_fill_recv(struct virtnet_info
*vi
, struct receive_queue
*rq
,
1108 if (vi
->mergeable_rx_bufs
)
1109 err
= add_recvbuf_mergeable(vi
, rq
, gfp
);
1110 else if (vi
->big_packets
)
1111 err
= add_recvbuf_big(vi
, rq
, gfp
);
1113 err
= add_recvbuf_small(vi
, rq
, gfp
);
1115 oom
= err
== -ENOMEM
;
1118 } while (rq
->vq
->num_free
);
1119 virtqueue_kick(rq
->vq
);
1123 static void skb_recv_done(struct virtqueue
*rvq
)
1125 struct virtnet_info
*vi
= rvq
->vdev
->priv
;
1126 struct receive_queue
*rq
= &vi
->rq
[vq2rxq(rvq
)];
1128 virtqueue_napi_schedule(&rq
->napi
, rvq
);
1131 static void virtnet_napi_enable(struct virtqueue
*vq
, struct napi_struct
*napi
)
1135 /* If all buffers were filled by other side before we napi_enabled, we
1136 * won't get another interrupt, so process any outstanding packets now.
1137 * Call local_bh_enable after to trigger softIRQ processing.
1140 virtqueue_napi_schedule(napi
, vq
);
1144 static void virtnet_napi_tx_enable(struct virtnet_info
*vi
,
1145 struct virtqueue
*vq
,
1146 struct napi_struct
*napi
)
1151 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1152 * enable the feature if this is likely affine with the transmit path.
1154 if (!vi
->affinity_hint_set
) {
1159 return virtnet_napi_enable(vq
, napi
);
1162 static void virtnet_napi_tx_disable(struct napi_struct
*napi
)
1168 static void refill_work(struct work_struct
*work
)
1170 struct virtnet_info
*vi
=
1171 container_of(work
, struct virtnet_info
, refill
.work
);
1175 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++) {
1176 struct receive_queue
*rq
= &vi
->rq
[i
];
1178 napi_disable(&rq
->napi
);
1179 still_empty
= !try_fill_recv(vi
, rq
, GFP_KERNEL
);
1180 virtnet_napi_enable(rq
->vq
, &rq
->napi
);
1182 /* In theory, this can happen: if we don't get any buffers in
1183 * we will *never* try to fill again.
1186 schedule_delayed_work(&vi
->refill
, HZ
/2);
1190 static int virtnet_receive(struct receive_queue
*rq
, int budget
, bool *xdp_xmit
)
1192 struct virtnet_info
*vi
= rq
->vq
->vdev
->priv
;
1193 unsigned int len
, received
= 0, bytes
= 0;
1196 if (!vi
->big_packets
|| vi
->mergeable_rx_bufs
) {
1199 while (received
< budget
&&
1200 (buf
= virtqueue_get_buf_ctx(rq
->vq
, &len
, &ctx
))) {
1201 bytes
+= receive_buf(vi
, rq
, buf
, len
, ctx
, xdp_xmit
);
1205 while (received
< budget
&&
1206 (buf
= virtqueue_get_buf(rq
->vq
, &len
)) != NULL
) {
1207 bytes
+= receive_buf(vi
, rq
, buf
, len
, NULL
, xdp_xmit
);
1212 if (rq
->vq
->num_free
> virtqueue_get_vring_size(rq
->vq
) / 2) {
1213 if (!try_fill_recv(vi
, rq
, GFP_ATOMIC
))
1214 schedule_delayed_work(&vi
->refill
, 0);
1217 u64_stats_update_begin(&rq
->stats
.syncp
);
1218 rq
->stats
.bytes
+= bytes
;
1219 rq
->stats
.packets
+= received
;
1220 u64_stats_update_end(&rq
->stats
.syncp
);
1225 static void free_old_xmit_skbs(struct send_queue
*sq
)
1227 struct sk_buff
*skb
;
1229 unsigned int packets
= 0;
1230 unsigned int bytes
= 0;
1232 while ((skb
= virtqueue_get_buf(sq
->vq
, &len
)) != NULL
) {
1233 pr_debug("Sent skb %p\n", skb
);
1238 dev_consume_skb_any(skb
);
1241 /* Avoid overhead when no packets have been processed
1242 * happens when called speculatively from start_xmit.
1247 u64_stats_update_begin(&sq
->stats
.syncp
);
1248 sq
->stats
.bytes
+= bytes
;
1249 sq
->stats
.packets
+= packets
;
1250 u64_stats_update_end(&sq
->stats
.syncp
);
1253 static void virtnet_poll_cleantx(struct receive_queue
*rq
)
1255 struct virtnet_info
*vi
= rq
->vq
->vdev
->priv
;
1256 unsigned int index
= vq2rxq(rq
->vq
);
1257 struct send_queue
*sq
= &vi
->sq
[index
];
1258 struct netdev_queue
*txq
= netdev_get_tx_queue(vi
->dev
, index
);
1260 if (!sq
->napi
.weight
)
1263 if (__netif_tx_trylock(txq
)) {
1264 free_old_xmit_skbs(sq
);
1265 __netif_tx_unlock(txq
);
1268 if (sq
->vq
->num_free
>= 2 + MAX_SKB_FRAGS
)
1269 netif_tx_wake_queue(txq
);
1272 static int virtnet_poll(struct napi_struct
*napi
, int budget
)
1274 struct receive_queue
*rq
=
1275 container_of(napi
, struct receive_queue
, napi
);
1276 struct virtnet_info
*vi
= rq
->vq
->vdev
->priv
;
1277 struct send_queue
*sq
;
1278 unsigned int received
, qp
;
1279 bool xdp_xmit
= false;
1281 virtnet_poll_cleantx(rq
);
1283 received
= virtnet_receive(rq
, budget
, &xdp_xmit
);
1285 /* Out of packets? */
1286 if (received
< budget
)
1287 virtqueue_napi_complete(napi
, rq
->vq
, received
);
1290 qp
= vi
->curr_queue_pairs
- vi
->xdp_queue_pairs
+
1293 virtqueue_kick(sq
->vq
);
1300 static int virtnet_open(struct net_device
*dev
)
1302 struct virtnet_info
*vi
= netdev_priv(dev
);
1305 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
1306 if (i
< vi
->curr_queue_pairs
)
1307 /* Make sure we have some buffers: if oom use wq. */
1308 if (!try_fill_recv(vi
, &vi
->rq
[i
], GFP_KERNEL
))
1309 schedule_delayed_work(&vi
->refill
, 0);
1311 err
= xdp_rxq_info_reg(&vi
->rq
[i
].xdp_rxq
, dev
, i
);
1315 virtnet_napi_enable(vi
->rq
[i
].vq
, &vi
->rq
[i
].napi
);
1316 virtnet_napi_tx_enable(vi
, vi
->sq
[i
].vq
, &vi
->sq
[i
].napi
);
1322 static int virtnet_poll_tx(struct napi_struct
*napi
, int budget
)
1324 struct send_queue
*sq
= container_of(napi
, struct send_queue
, napi
);
1325 struct virtnet_info
*vi
= sq
->vq
->vdev
->priv
;
1326 struct netdev_queue
*txq
= netdev_get_tx_queue(vi
->dev
, vq2txq(sq
->vq
));
1328 __netif_tx_lock(txq
, raw_smp_processor_id());
1329 free_old_xmit_skbs(sq
);
1330 __netif_tx_unlock(txq
);
1332 virtqueue_napi_complete(napi
, sq
->vq
, 0);
1334 if (sq
->vq
->num_free
>= 2 + MAX_SKB_FRAGS
)
1335 netif_tx_wake_queue(txq
);
1340 static int xmit_skb(struct send_queue
*sq
, struct sk_buff
*skb
)
1342 struct virtio_net_hdr_mrg_rxbuf
*hdr
;
1343 const unsigned char *dest
= ((struct ethhdr
*)skb
->data
)->h_dest
;
1344 struct virtnet_info
*vi
= sq
->vq
->vdev
->priv
;
1346 unsigned hdr_len
= vi
->hdr_len
;
1349 pr_debug("%s: xmit %p %pM\n", vi
->dev
->name
, skb
, dest
);
1351 can_push
= vi
->any_header_sg
&&
1352 !((unsigned long)skb
->data
& (__alignof__(*hdr
) - 1)) &&
1353 !skb_header_cloned(skb
) && skb_headroom(skb
) >= hdr_len
;
1354 /* Even if we can, don't push here yet as this would skew
1355 * csum_start offset below. */
1357 hdr
= (struct virtio_net_hdr_mrg_rxbuf
*)(skb
->data
- hdr_len
);
1359 hdr
= skb_vnet_hdr(skb
);
1361 if (virtio_net_hdr_from_skb(skb
, &hdr
->hdr
,
1362 virtio_is_little_endian(vi
->vdev
), false))
1365 if (vi
->mergeable_rx_bufs
)
1366 hdr
->num_buffers
= 0;
1368 sg_init_table(sq
->sg
, skb_shinfo(skb
)->nr_frags
+ (can_push
? 1 : 2));
1370 __skb_push(skb
, hdr_len
);
1371 num_sg
= skb_to_sgvec(skb
, sq
->sg
, 0, skb
->len
);
1372 if (unlikely(num_sg
< 0))
1374 /* Pull header back to avoid skew in tx bytes calculations. */
1375 __skb_pull(skb
, hdr_len
);
1377 sg_set_buf(sq
->sg
, hdr
, hdr_len
);
1378 num_sg
= skb_to_sgvec(skb
, sq
->sg
+ 1, 0, skb
->len
);
1379 if (unlikely(num_sg
< 0))
1383 return virtqueue_add_outbuf(sq
->vq
, sq
->sg
, num_sg
, skb
, GFP_ATOMIC
);
1386 static netdev_tx_t
start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1388 struct virtnet_info
*vi
= netdev_priv(dev
);
1389 int qnum
= skb_get_queue_mapping(skb
);
1390 struct send_queue
*sq
= &vi
->sq
[qnum
];
1392 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, qnum
);
1393 bool kick
= !skb
->xmit_more
;
1394 bool use_napi
= sq
->napi
.weight
;
1396 /* Free up any pending old buffers before queueing new ones. */
1397 free_old_xmit_skbs(sq
);
1399 if (use_napi
&& kick
)
1400 virtqueue_enable_cb_delayed(sq
->vq
);
1402 /* timestamp packet in software */
1403 skb_tx_timestamp(skb
);
1405 /* Try to transmit */
1406 err
= xmit_skb(sq
, skb
);
1408 /* This should not happen! */
1409 if (unlikely(err
)) {
1410 dev
->stats
.tx_fifo_errors
++;
1411 if (net_ratelimit())
1413 "Unexpected TXQ (%d) queue failure: %d\n", qnum
, err
);
1414 dev
->stats
.tx_dropped
++;
1415 dev_kfree_skb_any(skb
);
1416 return NETDEV_TX_OK
;
1419 /* Don't wait up for transmitted skbs to be freed. */
1425 /* If running out of space, stop queue to avoid getting packets that we
1426 * are then unable to transmit.
1427 * An alternative would be to force queuing layer to requeue the skb by
1428 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1429 * returned in a normal path of operation: it means that driver is not
1430 * maintaining the TX queue stop/start state properly, and causes
1431 * the stack to do a non-trivial amount of useless work.
1432 * Since most packets only take 1 or 2 ring slots, stopping the queue
1433 * early means 16 slots are typically wasted.
1435 if (sq
->vq
->num_free
< 2+MAX_SKB_FRAGS
) {
1436 netif_stop_subqueue(dev
, qnum
);
1438 unlikely(!virtqueue_enable_cb_delayed(sq
->vq
))) {
1439 /* More just got used, free them then recheck. */
1440 free_old_xmit_skbs(sq
);
1441 if (sq
->vq
->num_free
>= 2+MAX_SKB_FRAGS
) {
1442 netif_start_subqueue(dev
, qnum
);
1443 virtqueue_disable_cb(sq
->vq
);
1448 if (kick
|| netif_xmit_stopped(txq
))
1449 virtqueue_kick(sq
->vq
);
1451 return NETDEV_TX_OK
;
1455 * Send command via the control virtqueue and check status. Commands
1456 * supported by the hypervisor, as indicated by feature bits, should
1457 * never fail unless improperly formatted.
1459 static bool virtnet_send_command(struct virtnet_info
*vi
, u8
class, u8 cmd
,
1460 struct scatterlist
*out
)
1462 struct scatterlist
*sgs
[4], hdr
, stat
;
1463 unsigned out_num
= 0, tmp
;
1465 /* Caller should know better */
1466 BUG_ON(!virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_CTRL_VQ
));
1468 vi
->ctrl
->status
= ~0;
1469 vi
->ctrl
->hdr
.class = class;
1470 vi
->ctrl
->hdr
.cmd
= cmd
;
1472 sg_init_one(&hdr
, &vi
->ctrl
->hdr
, sizeof(vi
->ctrl
->hdr
));
1473 sgs
[out_num
++] = &hdr
;
1476 sgs
[out_num
++] = out
;
1478 /* Add return status. */
1479 sg_init_one(&stat
, &vi
->ctrl
->status
, sizeof(vi
->ctrl
->status
));
1480 sgs
[out_num
] = &stat
;
1482 BUG_ON(out_num
+ 1 > ARRAY_SIZE(sgs
));
1483 virtqueue_add_sgs(vi
->cvq
, sgs
, out_num
, 1, vi
, GFP_ATOMIC
);
1485 if (unlikely(!virtqueue_kick(vi
->cvq
)))
1486 return vi
->ctrl
->status
== VIRTIO_NET_OK
;
1488 /* Spin for a response, the kick causes an ioport write, trapping
1489 * into the hypervisor, so the request should be handled immediately.
1491 while (!virtqueue_get_buf(vi
->cvq
, &tmp
) &&
1492 !virtqueue_is_broken(vi
->cvq
))
1495 return vi
->ctrl
->status
== VIRTIO_NET_OK
;
1498 static int virtnet_set_mac_address(struct net_device
*dev
, void *p
)
1500 struct virtnet_info
*vi
= netdev_priv(dev
);
1501 struct virtio_device
*vdev
= vi
->vdev
;
1503 struct sockaddr
*addr
;
1504 struct scatterlist sg
;
1506 addr
= kmemdup(p
, sizeof(*addr
), GFP_KERNEL
);
1510 ret
= eth_prepare_mac_addr_change(dev
, addr
);
1514 if (virtio_has_feature(vdev
, VIRTIO_NET_F_CTRL_MAC_ADDR
)) {
1515 sg_init_one(&sg
, addr
->sa_data
, dev
->addr_len
);
1516 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_MAC
,
1517 VIRTIO_NET_CTRL_MAC_ADDR_SET
, &sg
)) {
1518 dev_warn(&vdev
->dev
,
1519 "Failed to set mac address by vq command.\n");
1523 } else if (virtio_has_feature(vdev
, VIRTIO_NET_F_MAC
) &&
1524 !virtio_has_feature(vdev
, VIRTIO_F_VERSION_1
)) {
1527 /* Naturally, this has an atomicity problem. */
1528 for (i
= 0; i
< dev
->addr_len
; i
++)
1529 virtio_cwrite8(vdev
,
1530 offsetof(struct virtio_net_config
, mac
) +
1531 i
, addr
->sa_data
[i
]);
1534 eth_commit_mac_addr_change(dev
, p
);
1542 static void virtnet_stats(struct net_device
*dev
,
1543 struct rtnl_link_stats64
*tot
)
1545 struct virtnet_info
*vi
= netdev_priv(dev
);
1549 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
1550 u64 tpackets
, tbytes
, rpackets
, rbytes
;
1551 struct receive_queue
*rq
= &vi
->rq
[i
];
1552 struct send_queue
*sq
= &vi
->sq
[i
];
1555 start
= u64_stats_fetch_begin_irq(&sq
->stats
.syncp
);
1556 tpackets
= sq
->stats
.packets
;
1557 tbytes
= sq
->stats
.bytes
;
1558 } while (u64_stats_fetch_retry_irq(&sq
->stats
.syncp
, start
));
1561 start
= u64_stats_fetch_begin_irq(&rq
->stats
.syncp
);
1562 rpackets
= rq
->stats
.packets
;
1563 rbytes
= rq
->stats
.bytes
;
1564 } while (u64_stats_fetch_retry_irq(&rq
->stats
.syncp
, start
));
1566 tot
->rx_packets
+= rpackets
;
1567 tot
->tx_packets
+= tpackets
;
1568 tot
->rx_bytes
+= rbytes
;
1569 tot
->tx_bytes
+= tbytes
;
1572 tot
->tx_dropped
= dev
->stats
.tx_dropped
;
1573 tot
->tx_fifo_errors
= dev
->stats
.tx_fifo_errors
;
1574 tot
->rx_dropped
= dev
->stats
.rx_dropped
;
1575 tot
->rx_length_errors
= dev
->stats
.rx_length_errors
;
1576 tot
->rx_frame_errors
= dev
->stats
.rx_frame_errors
;
1579 #ifdef CONFIG_NET_POLL_CONTROLLER
1580 static void virtnet_netpoll(struct net_device
*dev
)
1582 struct virtnet_info
*vi
= netdev_priv(dev
);
1585 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++)
1586 napi_schedule(&vi
->rq
[i
].napi
);
1590 static void virtnet_ack_link_announce(struct virtnet_info
*vi
)
1593 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_ANNOUNCE
,
1594 VIRTIO_NET_CTRL_ANNOUNCE_ACK
, NULL
))
1595 dev_warn(&vi
->dev
->dev
, "Failed to ack link announce.\n");
1599 static int _virtnet_set_queues(struct virtnet_info
*vi
, u16 queue_pairs
)
1601 struct scatterlist sg
;
1602 struct net_device
*dev
= vi
->dev
;
1604 if (!vi
->has_cvq
|| !virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_MQ
))
1607 vi
->ctrl
->mq
.virtqueue_pairs
= cpu_to_virtio16(vi
->vdev
, queue_pairs
);
1608 sg_init_one(&sg
, &vi
->ctrl
->mq
, sizeof(vi
->ctrl
->mq
));
1610 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_MQ
,
1611 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET
, &sg
)) {
1612 dev_warn(&dev
->dev
, "Fail to set num of queue pairs to %d\n",
1616 vi
->curr_queue_pairs
= queue_pairs
;
1617 /* virtnet_open() will refill when device is going to up. */
1618 if (dev
->flags
& IFF_UP
)
1619 schedule_delayed_work(&vi
->refill
, 0);
1625 static int virtnet_set_queues(struct virtnet_info
*vi
, u16 queue_pairs
)
1630 err
= _virtnet_set_queues(vi
, queue_pairs
);
1635 static int virtnet_close(struct net_device
*dev
)
1637 struct virtnet_info
*vi
= netdev_priv(dev
);
1640 /* Make sure refill_work doesn't re-enable napi! */
1641 cancel_delayed_work_sync(&vi
->refill
);
1643 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
1644 xdp_rxq_info_unreg(&vi
->rq
[i
].xdp_rxq
);
1645 napi_disable(&vi
->rq
[i
].napi
);
1646 virtnet_napi_tx_disable(&vi
->sq
[i
].napi
);
1652 static void virtnet_set_rx_mode(struct net_device
*dev
)
1654 struct virtnet_info
*vi
= netdev_priv(dev
);
1655 struct scatterlist sg
[2];
1656 struct virtio_net_ctrl_mac
*mac_data
;
1657 struct netdev_hw_addr
*ha
;
1663 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
1664 if (!virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_CTRL_RX
))
1667 vi
->ctrl
->promisc
= ((dev
->flags
& IFF_PROMISC
) != 0);
1668 vi
->ctrl
->allmulti
= ((dev
->flags
& IFF_ALLMULTI
) != 0);
1670 sg_init_one(sg
, &vi
->ctrl
->promisc
, sizeof(vi
->ctrl
->promisc
));
1672 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_RX
,
1673 VIRTIO_NET_CTRL_RX_PROMISC
, sg
))
1674 dev_warn(&dev
->dev
, "Failed to %sable promisc mode.\n",
1675 vi
->ctrl
->promisc
? "en" : "dis");
1677 sg_init_one(sg
, &vi
->ctrl
->allmulti
, sizeof(vi
->ctrl
->allmulti
));
1679 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_RX
,
1680 VIRTIO_NET_CTRL_RX_ALLMULTI
, sg
))
1681 dev_warn(&dev
->dev
, "Failed to %sable allmulti mode.\n",
1682 vi
->ctrl
->allmulti
? "en" : "dis");
1684 uc_count
= netdev_uc_count(dev
);
1685 mc_count
= netdev_mc_count(dev
);
1686 /* MAC filter - use one buffer for both lists */
1687 buf
= kzalloc(((uc_count
+ mc_count
) * ETH_ALEN
) +
1688 (2 * sizeof(mac_data
->entries
)), GFP_ATOMIC
);
1693 sg_init_table(sg
, 2);
1695 /* Store the unicast list and count in the front of the buffer */
1696 mac_data
->entries
= cpu_to_virtio32(vi
->vdev
, uc_count
);
1698 netdev_for_each_uc_addr(ha
, dev
)
1699 memcpy(&mac_data
->macs
[i
++][0], ha
->addr
, ETH_ALEN
);
1701 sg_set_buf(&sg
[0], mac_data
,
1702 sizeof(mac_data
->entries
) + (uc_count
* ETH_ALEN
));
1704 /* multicast list and count fill the end */
1705 mac_data
= (void *)&mac_data
->macs
[uc_count
][0];
1707 mac_data
->entries
= cpu_to_virtio32(vi
->vdev
, mc_count
);
1709 netdev_for_each_mc_addr(ha
, dev
)
1710 memcpy(&mac_data
->macs
[i
++][0], ha
->addr
, ETH_ALEN
);
1712 sg_set_buf(&sg
[1], mac_data
,
1713 sizeof(mac_data
->entries
) + (mc_count
* ETH_ALEN
));
1715 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_MAC
,
1716 VIRTIO_NET_CTRL_MAC_TABLE_SET
, sg
))
1717 dev_warn(&dev
->dev
, "Failed to set MAC filter table.\n");
1722 static int virtnet_vlan_rx_add_vid(struct net_device
*dev
,
1723 __be16 proto
, u16 vid
)
1725 struct virtnet_info
*vi
= netdev_priv(dev
);
1726 struct scatterlist sg
;
1728 vi
->ctrl
->vid
= cpu_to_virtio16(vi
->vdev
, vid
);
1729 sg_init_one(&sg
, &vi
->ctrl
->vid
, sizeof(vi
->ctrl
->vid
));
1731 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_VLAN
,
1732 VIRTIO_NET_CTRL_VLAN_ADD
, &sg
))
1733 dev_warn(&dev
->dev
, "Failed to add VLAN ID %d.\n", vid
);
1737 static int virtnet_vlan_rx_kill_vid(struct net_device
*dev
,
1738 __be16 proto
, u16 vid
)
1740 struct virtnet_info
*vi
= netdev_priv(dev
);
1741 struct scatterlist sg
;
1743 vi
->ctrl
->vid
= cpu_to_virtio16(vi
->vdev
, vid
);
1744 sg_init_one(&sg
, &vi
->ctrl
->vid
, sizeof(vi
->ctrl
->vid
));
1746 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_VLAN
,
1747 VIRTIO_NET_CTRL_VLAN_DEL
, &sg
))
1748 dev_warn(&dev
->dev
, "Failed to kill VLAN ID %d.\n", vid
);
1752 static void virtnet_clean_affinity(struct virtnet_info
*vi
, long hcpu
)
1756 if (vi
->affinity_hint_set
) {
1757 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
1758 virtqueue_set_affinity(vi
->rq
[i
].vq
, -1);
1759 virtqueue_set_affinity(vi
->sq
[i
].vq
, -1);
1762 vi
->affinity_hint_set
= false;
1766 static void virtnet_set_affinity(struct virtnet_info
*vi
)
1771 /* In multiqueue mode, when the number of cpu is equal to the number of
1772 * queue pairs, we let the queue pairs to be private to one cpu by
1773 * setting the affinity hint to eliminate the contention.
1775 if (vi
->curr_queue_pairs
== 1 ||
1776 vi
->max_queue_pairs
!= num_online_cpus()) {
1777 virtnet_clean_affinity(vi
, -1);
1782 for_each_online_cpu(cpu
) {
1783 virtqueue_set_affinity(vi
->rq
[i
].vq
, cpu
);
1784 virtqueue_set_affinity(vi
->sq
[i
].vq
, cpu
);
1785 netif_set_xps_queue(vi
->dev
, cpumask_of(cpu
), i
);
1789 vi
->affinity_hint_set
= true;
1792 static int virtnet_cpu_online(unsigned int cpu
, struct hlist_node
*node
)
1794 struct virtnet_info
*vi
= hlist_entry_safe(node
, struct virtnet_info
,
1796 virtnet_set_affinity(vi
);
1800 static int virtnet_cpu_dead(unsigned int cpu
, struct hlist_node
*node
)
1802 struct virtnet_info
*vi
= hlist_entry_safe(node
, struct virtnet_info
,
1804 virtnet_set_affinity(vi
);
1808 static int virtnet_cpu_down_prep(unsigned int cpu
, struct hlist_node
*node
)
1810 struct virtnet_info
*vi
= hlist_entry_safe(node
, struct virtnet_info
,
1813 virtnet_clean_affinity(vi
, cpu
);
1817 static enum cpuhp_state virtionet_online
;
1819 static int virtnet_cpu_notif_add(struct virtnet_info
*vi
)
1823 ret
= cpuhp_state_add_instance_nocalls(virtionet_online
, &vi
->node
);
1826 ret
= cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD
,
1830 cpuhp_state_remove_instance_nocalls(virtionet_online
, &vi
->node
);
1834 static void virtnet_cpu_notif_remove(struct virtnet_info
*vi
)
1836 cpuhp_state_remove_instance_nocalls(virtionet_online
, &vi
->node
);
1837 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD
,
1841 static void virtnet_get_ringparam(struct net_device
*dev
,
1842 struct ethtool_ringparam
*ring
)
1844 struct virtnet_info
*vi
= netdev_priv(dev
);
1846 ring
->rx_max_pending
= virtqueue_get_vring_size(vi
->rq
[0].vq
);
1847 ring
->tx_max_pending
= virtqueue_get_vring_size(vi
->sq
[0].vq
);
1848 ring
->rx_pending
= ring
->rx_max_pending
;
1849 ring
->tx_pending
= ring
->tx_max_pending
;
1853 static void virtnet_get_drvinfo(struct net_device
*dev
,
1854 struct ethtool_drvinfo
*info
)
1856 struct virtnet_info
*vi
= netdev_priv(dev
);
1857 struct virtio_device
*vdev
= vi
->vdev
;
1859 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
1860 strlcpy(info
->version
, VIRTNET_DRIVER_VERSION
, sizeof(info
->version
));
1861 strlcpy(info
->bus_info
, virtio_bus_name(vdev
), sizeof(info
->bus_info
));
1865 /* TODO: Eliminate OOO packets during switching */
1866 static int virtnet_set_channels(struct net_device
*dev
,
1867 struct ethtool_channels
*channels
)
1869 struct virtnet_info
*vi
= netdev_priv(dev
);
1870 u16 queue_pairs
= channels
->combined_count
;
1873 /* We don't support separate rx/tx channels.
1874 * We don't allow setting 'other' channels.
1876 if (channels
->rx_count
|| channels
->tx_count
|| channels
->other_count
)
1879 if (queue_pairs
> vi
->max_queue_pairs
|| queue_pairs
== 0)
1882 /* For now we don't support modifying channels while XDP is loaded
1883 * also when XDP is loaded all RX queues have XDP programs so we only
1884 * need to check a single RX queue.
1886 if (vi
->rq
[0].xdp_prog
)
1890 err
= _virtnet_set_queues(vi
, queue_pairs
);
1892 netif_set_real_num_tx_queues(dev
, queue_pairs
);
1893 netif_set_real_num_rx_queues(dev
, queue_pairs
);
1895 virtnet_set_affinity(vi
);
1902 static void virtnet_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
1904 struct virtnet_info
*vi
= netdev_priv(dev
);
1905 char *p
= (char *)data
;
1908 switch (stringset
) {
1910 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++) {
1911 for (j
= 0; j
< VIRTNET_RQ_STATS_LEN
; j
++) {
1912 snprintf(p
, ETH_GSTRING_LEN
, "rx_queue_%u_%s",
1913 i
, virtnet_rq_stats_desc
[j
].desc
);
1914 p
+= ETH_GSTRING_LEN
;
1918 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++) {
1919 for (j
= 0; j
< VIRTNET_SQ_STATS_LEN
; j
++) {
1920 snprintf(p
, ETH_GSTRING_LEN
, "tx_queue_%u_%s",
1921 i
, virtnet_sq_stats_desc
[j
].desc
);
1922 p
+= ETH_GSTRING_LEN
;
1929 static int virtnet_get_sset_count(struct net_device
*dev
, int sset
)
1931 struct virtnet_info
*vi
= netdev_priv(dev
);
1935 return vi
->curr_queue_pairs
* (VIRTNET_RQ_STATS_LEN
+
1936 VIRTNET_SQ_STATS_LEN
);
1942 static void virtnet_get_ethtool_stats(struct net_device
*dev
,
1943 struct ethtool_stats
*stats
, u64
*data
)
1945 struct virtnet_info
*vi
= netdev_priv(dev
);
1946 unsigned int idx
= 0, start
, i
, j
;
1947 const u8
*stats_base
;
1950 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++) {
1951 struct receive_queue
*rq
= &vi
->rq
[i
];
1953 stats_base
= (u8
*)&rq
->stats
;
1955 start
= u64_stats_fetch_begin_irq(&rq
->stats
.syncp
);
1956 for (j
= 0; j
< VIRTNET_RQ_STATS_LEN
; j
++) {
1957 offset
= virtnet_rq_stats_desc
[j
].offset
;
1958 data
[idx
+ j
] = *(u64
*)(stats_base
+ offset
);
1960 } while (u64_stats_fetch_retry_irq(&rq
->stats
.syncp
, start
));
1961 idx
+= VIRTNET_RQ_STATS_LEN
;
1964 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++) {
1965 struct send_queue
*sq
= &vi
->sq
[i
];
1967 stats_base
= (u8
*)&sq
->stats
;
1969 start
= u64_stats_fetch_begin_irq(&sq
->stats
.syncp
);
1970 for (j
= 0; j
< VIRTNET_SQ_STATS_LEN
; j
++) {
1971 offset
= virtnet_sq_stats_desc
[j
].offset
;
1972 data
[idx
+ j
] = *(u64
*)(stats_base
+ offset
);
1974 } while (u64_stats_fetch_retry_irq(&sq
->stats
.syncp
, start
));
1975 idx
+= VIRTNET_SQ_STATS_LEN
;
1979 static void virtnet_get_channels(struct net_device
*dev
,
1980 struct ethtool_channels
*channels
)
1982 struct virtnet_info
*vi
= netdev_priv(dev
);
1984 channels
->combined_count
= vi
->curr_queue_pairs
;
1985 channels
->max_combined
= vi
->max_queue_pairs
;
1986 channels
->max_other
= 0;
1987 channels
->rx_count
= 0;
1988 channels
->tx_count
= 0;
1989 channels
->other_count
= 0;
1992 /* Check if the user is trying to change anything besides speed/duplex */
1994 virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings
*cmd
)
1996 struct ethtool_link_ksettings diff1
= *cmd
;
1997 struct ethtool_link_ksettings diff2
= {};
1999 /* cmd is always set so we need to clear it, validate the port type
2000 * and also without autonegotiation we can ignore advertising
2002 diff1
.base
.speed
= 0;
2003 diff2
.base
.port
= PORT_OTHER
;
2004 ethtool_link_ksettings_zero_link_mode(&diff1
, advertising
);
2005 diff1
.base
.duplex
= 0;
2007 diff1
.base
.link_mode_masks_nwords
= 0;
2009 return !memcmp(&diff1
.base
, &diff2
.base
, sizeof(diff1
.base
)) &&
2010 bitmap_empty(diff1
.link_modes
.supported
,
2011 __ETHTOOL_LINK_MODE_MASK_NBITS
) &&
2012 bitmap_empty(diff1
.link_modes
.advertising
,
2013 __ETHTOOL_LINK_MODE_MASK_NBITS
) &&
2014 bitmap_empty(diff1
.link_modes
.lp_advertising
,
2015 __ETHTOOL_LINK_MODE_MASK_NBITS
);
2018 static int virtnet_set_link_ksettings(struct net_device
*dev
,
2019 const struct ethtool_link_ksettings
*cmd
)
2021 struct virtnet_info
*vi
= netdev_priv(dev
);
2024 speed
= cmd
->base
.speed
;
2025 /* don't allow custom speed and duplex */
2026 if (!ethtool_validate_speed(speed
) ||
2027 !ethtool_validate_duplex(cmd
->base
.duplex
) ||
2028 !virtnet_validate_ethtool_cmd(cmd
))
2031 vi
->duplex
= cmd
->base
.duplex
;
2036 static int virtnet_get_link_ksettings(struct net_device
*dev
,
2037 struct ethtool_link_ksettings
*cmd
)
2039 struct virtnet_info
*vi
= netdev_priv(dev
);
2041 cmd
->base
.speed
= vi
->speed
;
2042 cmd
->base
.duplex
= vi
->duplex
;
2043 cmd
->base
.port
= PORT_OTHER
;
2048 static void virtnet_init_settings(struct net_device
*dev
)
2050 struct virtnet_info
*vi
= netdev_priv(dev
);
2052 vi
->speed
= SPEED_UNKNOWN
;
2053 vi
->duplex
= DUPLEX_UNKNOWN
;
2056 static void virtnet_update_settings(struct virtnet_info
*vi
)
2061 if (!virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_SPEED_DUPLEX
))
2064 speed
= virtio_cread32(vi
->vdev
, offsetof(struct virtio_net_config
,
2066 if (ethtool_validate_speed(speed
))
2068 duplex
= virtio_cread8(vi
->vdev
, offsetof(struct virtio_net_config
,
2070 if (ethtool_validate_duplex(duplex
))
2071 vi
->duplex
= duplex
;
2074 static const struct ethtool_ops virtnet_ethtool_ops
= {
2075 .get_drvinfo
= virtnet_get_drvinfo
,
2076 .get_link
= ethtool_op_get_link
,
2077 .get_ringparam
= virtnet_get_ringparam
,
2078 .get_strings
= virtnet_get_strings
,
2079 .get_sset_count
= virtnet_get_sset_count
,
2080 .get_ethtool_stats
= virtnet_get_ethtool_stats
,
2081 .set_channels
= virtnet_set_channels
,
2082 .get_channels
= virtnet_get_channels
,
2083 .get_ts_info
= ethtool_op_get_ts_info
,
2084 .get_link_ksettings
= virtnet_get_link_ksettings
,
2085 .set_link_ksettings
= virtnet_set_link_ksettings
,
2088 static void virtnet_freeze_down(struct virtio_device
*vdev
)
2090 struct virtnet_info
*vi
= vdev
->priv
;
2093 /* Make sure no work handler is accessing the device */
2094 flush_work(&vi
->config_work
);
2096 netif_device_detach(vi
->dev
);
2097 netif_tx_disable(vi
->dev
);
2098 cancel_delayed_work_sync(&vi
->refill
);
2100 if (netif_running(vi
->dev
)) {
2101 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2102 napi_disable(&vi
->rq
[i
].napi
);
2103 virtnet_napi_tx_disable(&vi
->sq
[i
].napi
);
2108 static int init_vqs(struct virtnet_info
*vi
);
2110 static int virtnet_restore_up(struct virtio_device
*vdev
)
2112 struct virtnet_info
*vi
= vdev
->priv
;
2119 virtio_device_ready(vdev
);
2121 if (netif_running(vi
->dev
)) {
2122 for (i
= 0; i
< vi
->curr_queue_pairs
; i
++)
2123 if (!try_fill_recv(vi
, &vi
->rq
[i
], GFP_KERNEL
))
2124 schedule_delayed_work(&vi
->refill
, 0);
2126 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2127 virtnet_napi_enable(vi
->rq
[i
].vq
, &vi
->rq
[i
].napi
);
2128 virtnet_napi_tx_enable(vi
, vi
->sq
[i
].vq
,
2133 netif_device_attach(vi
->dev
);
2137 static int virtnet_set_guest_offloads(struct virtnet_info
*vi
, u64 offloads
)
2139 struct scatterlist sg
;
2140 vi
->ctrl
->offloads
= cpu_to_virtio64(vi
->vdev
, offloads
);
2142 sg_init_one(&sg
, &vi
->ctrl
->offloads
, sizeof(vi
->ctrl
->offloads
));
2144 if (!virtnet_send_command(vi
, VIRTIO_NET_CTRL_GUEST_OFFLOADS
,
2145 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET
, &sg
)) {
2146 dev_warn(&vi
->dev
->dev
, "Fail to set guest offload. \n");
2153 static int virtnet_clear_guest_offloads(struct virtnet_info
*vi
)
2157 if (!vi
->guest_offloads
)
2160 if (virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_CSUM
))
2161 offloads
= 1ULL << VIRTIO_NET_F_GUEST_CSUM
;
2163 return virtnet_set_guest_offloads(vi
, offloads
);
2166 static int virtnet_restore_guest_offloads(struct virtnet_info
*vi
)
2168 u64 offloads
= vi
->guest_offloads
;
2170 if (!vi
->guest_offloads
)
2172 if (virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_CSUM
))
2173 offloads
|= 1ULL << VIRTIO_NET_F_GUEST_CSUM
;
2175 return virtnet_set_guest_offloads(vi
, offloads
);
2178 static int virtnet_xdp_set(struct net_device
*dev
, struct bpf_prog
*prog
,
2179 struct netlink_ext_ack
*extack
)
2181 unsigned long int max_sz
= PAGE_SIZE
- sizeof(struct padded_vnet_hdr
);
2182 struct virtnet_info
*vi
= netdev_priv(dev
);
2183 struct bpf_prog
*old_prog
;
2184 u16 xdp_qp
= 0, curr_qp
;
2187 if (!virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
)
2188 && (virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_TSO4
) ||
2189 virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_TSO6
) ||
2190 virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_ECN
) ||
2191 virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_GUEST_UFO
))) {
2192 NL_SET_ERR_MSG_MOD(extack
, "Can't set XDP while host is implementing LRO, disable LRO first");
2196 if (vi
->mergeable_rx_bufs
&& !vi
->any_header_sg
) {
2197 NL_SET_ERR_MSG_MOD(extack
, "XDP expects header/data in single page, any_header_sg required");
2201 if (dev
->mtu
> max_sz
) {
2202 NL_SET_ERR_MSG_MOD(extack
, "MTU too large to enable XDP");
2203 netdev_warn(dev
, "XDP requires MTU less than %lu\n", max_sz
);
2207 curr_qp
= vi
->curr_queue_pairs
- vi
->xdp_queue_pairs
;
2209 xdp_qp
= nr_cpu_ids
;
2211 /* XDP requires extra queues for XDP_TX */
2212 if (curr_qp
+ xdp_qp
> vi
->max_queue_pairs
) {
2213 NL_SET_ERR_MSG_MOD(extack
, "Too few free TX rings available");
2214 netdev_warn(dev
, "request %i queues but max is %i\n",
2215 curr_qp
+ xdp_qp
, vi
->max_queue_pairs
);
2220 prog
= bpf_prog_add(prog
, vi
->max_queue_pairs
- 1);
2222 return PTR_ERR(prog
);
2225 /* Make sure NAPI is not using any XDP TX queues for RX. */
2226 if (netif_running(dev
))
2227 for (i
= 0; i
< vi
->max_queue_pairs
; i
++)
2228 napi_disable(&vi
->rq
[i
].napi
);
2230 netif_set_real_num_rx_queues(dev
, curr_qp
+ xdp_qp
);
2231 err
= _virtnet_set_queues(vi
, curr_qp
+ xdp_qp
);
2234 vi
->xdp_queue_pairs
= xdp_qp
;
2236 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2237 old_prog
= rtnl_dereference(vi
->rq
[i
].xdp_prog
);
2238 rcu_assign_pointer(vi
->rq
[i
].xdp_prog
, prog
);
2241 virtnet_clear_guest_offloads(vi
);
2243 virtnet_restore_guest_offloads(vi
);
2246 bpf_prog_put(old_prog
);
2247 if (netif_running(dev
))
2248 virtnet_napi_enable(vi
->rq
[i
].vq
, &vi
->rq
[i
].napi
);
2254 for (i
= 0; i
< vi
->max_queue_pairs
; i
++)
2255 virtnet_napi_enable(vi
->rq
[i
].vq
, &vi
->rq
[i
].napi
);
2257 bpf_prog_sub(prog
, vi
->max_queue_pairs
- 1);
2261 static u32
virtnet_xdp_query(struct net_device
*dev
)
2263 struct virtnet_info
*vi
= netdev_priv(dev
);
2264 const struct bpf_prog
*xdp_prog
;
2267 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2268 xdp_prog
= rtnl_dereference(vi
->rq
[i
].xdp_prog
);
2270 return xdp_prog
->aux
->id
;
2275 static int virtnet_xdp(struct net_device
*dev
, struct netdev_bpf
*xdp
)
2277 switch (xdp
->command
) {
2278 case XDP_SETUP_PROG
:
2279 return virtnet_xdp_set(dev
, xdp
->prog
, xdp
->extack
);
2280 case XDP_QUERY_PROG
:
2281 xdp
->prog_id
= virtnet_xdp_query(dev
);
2282 xdp
->prog_attached
= !!xdp
->prog_id
;
2289 static const struct net_device_ops virtnet_netdev
= {
2290 .ndo_open
= virtnet_open
,
2291 .ndo_stop
= virtnet_close
,
2292 .ndo_start_xmit
= start_xmit
,
2293 .ndo_validate_addr
= eth_validate_addr
,
2294 .ndo_set_mac_address
= virtnet_set_mac_address
,
2295 .ndo_set_rx_mode
= virtnet_set_rx_mode
,
2296 .ndo_get_stats64
= virtnet_stats
,
2297 .ndo_vlan_rx_add_vid
= virtnet_vlan_rx_add_vid
,
2298 .ndo_vlan_rx_kill_vid
= virtnet_vlan_rx_kill_vid
,
2299 #ifdef CONFIG_NET_POLL_CONTROLLER
2300 .ndo_poll_controller
= virtnet_netpoll
,
2302 .ndo_bpf
= virtnet_xdp
,
2303 .ndo_xdp_xmit
= virtnet_xdp_xmit
,
2304 .ndo_xdp_flush
= virtnet_xdp_flush
,
2305 .ndo_features_check
= passthru_features_check
,
2308 static void virtnet_config_changed_work(struct work_struct
*work
)
2310 struct virtnet_info
*vi
=
2311 container_of(work
, struct virtnet_info
, config_work
);
2314 if (virtio_cread_feature(vi
->vdev
, VIRTIO_NET_F_STATUS
,
2315 struct virtio_net_config
, status
, &v
) < 0)
2318 if (v
& VIRTIO_NET_S_ANNOUNCE
) {
2319 netdev_notify_peers(vi
->dev
);
2320 virtnet_ack_link_announce(vi
);
2323 /* Ignore unknown (future) status bits */
2324 v
&= VIRTIO_NET_S_LINK_UP
;
2326 if (vi
->status
== v
)
2331 if (vi
->status
& VIRTIO_NET_S_LINK_UP
) {
2332 virtnet_update_settings(vi
);
2333 netif_carrier_on(vi
->dev
);
2334 netif_tx_wake_all_queues(vi
->dev
);
2336 netif_carrier_off(vi
->dev
);
2337 netif_tx_stop_all_queues(vi
->dev
);
2341 static void virtnet_config_changed(struct virtio_device
*vdev
)
2343 struct virtnet_info
*vi
= vdev
->priv
;
2345 schedule_work(&vi
->config_work
);
2348 static void virtnet_free_queues(struct virtnet_info
*vi
)
2352 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2353 napi_hash_del(&vi
->rq
[i
].napi
);
2354 netif_napi_del(&vi
->rq
[i
].napi
);
2355 netif_napi_del(&vi
->sq
[i
].napi
);
2358 /* We called napi_hash_del() before netif_napi_del(),
2359 * we need to respect an RCU grace period before freeing vi->rq
2368 static void _free_receive_bufs(struct virtnet_info
*vi
)
2370 struct bpf_prog
*old_prog
;
2373 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2374 while (vi
->rq
[i
].pages
)
2375 __free_pages(get_a_page(&vi
->rq
[i
], GFP_KERNEL
), 0);
2377 old_prog
= rtnl_dereference(vi
->rq
[i
].xdp_prog
);
2378 RCU_INIT_POINTER(vi
->rq
[i
].xdp_prog
, NULL
);
2380 bpf_prog_put(old_prog
);
2384 static void free_receive_bufs(struct virtnet_info
*vi
)
2387 _free_receive_bufs(vi
);
2391 static void free_receive_page_frags(struct virtnet_info
*vi
)
2394 for (i
= 0; i
< vi
->max_queue_pairs
; i
++)
2395 if (vi
->rq
[i
].alloc_frag
.page
)
2396 put_page(vi
->rq
[i
].alloc_frag
.page
);
2399 static bool is_xdp_raw_buffer_queue(struct virtnet_info
*vi
, int q
)
2401 if (q
< (vi
->curr_queue_pairs
- vi
->xdp_queue_pairs
))
2403 else if (q
< vi
->curr_queue_pairs
)
2409 static void free_unused_bufs(struct virtnet_info
*vi
)
2414 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2415 struct virtqueue
*vq
= vi
->sq
[i
].vq
;
2416 while ((buf
= virtqueue_detach_unused_buf(vq
)) != NULL
) {
2417 if (!is_xdp_raw_buffer_queue(vi
, i
))
2420 put_page(virt_to_head_page(buf
));
2424 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2425 struct virtqueue
*vq
= vi
->rq
[i
].vq
;
2427 while ((buf
= virtqueue_detach_unused_buf(vq
)) != NULL
) {
2428 if (vi
->mergeable_rx_bufs
) {
2429 put_page(virt_to_head_page(buf
));
2430 } else if (vi
->big_packets
) {
2431 give_pages(&vi
->rq
[i
], buf
);
2433 put_page(virt_to_head_page(buf
));
2439 static void virtnet_del_vqs(struct virtnet_info
*vi
)
2441 struct virtio_device
*vdev
= vi
->vdev
;
2443 virtnet_clean_affinity(vi
, -1);
2445 vdev
->config
->del_vqs(vdev
);
2447 virtnet_free_queues(vi
);
2450 /* How large should a single buffer be so a queue full of these can fit at
2451 * least one full packet?
2452 * Logic below assumes the mergeable buffer header is used.
2454 static unsigned int mergeable_min_buf_len(struct virtnet_info
*vi
, struct virtqueue
*vq
)
2456 const unsigned int hdr_len
= sizeof(struct virtio_net_hdr_mrg_rxbuf
);
2457 unsigned int rq_size
= virtqueue_get_vring_size(vq
);
2458 unsigned int packet_len
= vi
->big_packets
? IP_MAX_MTU
: vi
->dev
->max_mtu
;
2459 unsigned int buf_len
= hdr_len
+ ETH_HLEN
+ VLAN_HLEN
+ packet_len
;
2460 unsigned int min_buf_len
= DIV_ROUND_UP(buf_len
, rq_size
);
2462 return max(max(min_buf_len
, hdr_len
) - hdr_len
,
2463 (unsigned int)GOOD_PACKET_LEN
);
2466 static int virtnet_find_vqs(struct virtnet_info
*vi
)
2468 vq_callback_t
**callbacks
;
2469 struct virtqueue
**vqs
;
2475 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2476 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2477 * possible control vq.
2479 total_vqs
= vi
->max_queue_pairs
* 2 +
2480 virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_CTRL_VQ
);
2482 /* Allocate space for find_vqs parameters */
2483 vqs
= kzalloc(total_vqs
* sizeof(*vqs
), GFP_KERNEL
);
2486 callbacks
= kmalloc(total_vqs
* sizeof(*callbacks
), GFP_KERNEL
);
2489 names
= kmalloc(total_vqs
* sizeof(*names
), GFP_KERNEL
);
2492 if (!vi
->big_packets
|| vi
->mergeable_rx_bufs
) {
2493 ctx
= kzalloc(total_vqs
* sizeof(*ctx
), GFP_KERNEL
);
2500 /* Parameters for control virtqueue, if any */
2502 callbacks
[total_vqs
- 1] = NULL
;
2503 names
[total_vqs
- 1] = "control";
2506 /* Allocate/initialize parameters for send/receive virtqueues */
2507 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2508 callbacks
[rxq2vq(i
)] = skb_recv_done
;
2509 callbacks
[txq2vq(i
)] = skb_xmit_done
;
2510 sprintf(vi
->rq
[i
].name
, "input.%d", i
);
2511 sprintf(vi
->sq
[i
].name
, "output.%d", i
);
2512 names
[rxq2vq(i
)] = vi
->rq
[i
].name
;
2513 names
[txq2vq(i
)] = vi
->sq
[i
].name
;
2515 ctx
[rxq2vq(i
)] = true;
2518 ret
= vi
->vdev
->config
->find_vqs(vi
->vdev
, total_vqs
, vqs
, callbacks
,
2524 vi
->cvq
= vqs
[total_vqs
- 1];
2525 if (virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_CTRL_VLAN
))
2526 vi
->dev
->features
|= NETIF_F_HW_VLAN_CTAG_FILTER
;
2529 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2530 vi
->rq
[i
].vq
= vqs
[rxq2vq(i
)];
2531 vi
->rq
[i
].min_buf_len
= mergeable_min_buf_len(vi
, vi
->rq
[i
].vq
);
2532 vi
->sq
[i
].vq
= vqs
[txq2vq(i
)];
2554 static int virtnet_alloc_queues(struct virtnet_info
*vi
)
2558 vi
->ctrl
= kzalloc(sizeof(*vi
->ctrl
), GFP_KERNEL
);
2561 vi
->sq
= kzalloc(sizeof(*vi
->sq
) * vi
->max_queue_pairs
, GFP_KERNEL
);
2564 vi
->rq
= kzalloc(sizeof(*vi
->rq
) * vi
->max_queue_pairs
, GFP_KERNEL
);
2568 INIT_DELAYED_WORK(&vi
->refill
, refill_work
);
2569 for (i
= 0; i
< vi
->max_queue_pairs
; i
++) {
2570 vi
->rq
[i
].pages
= NULL
;
2571 netif_napi_add(vi
->dev
, &vi
->rq
[i
].napi
, virtnet_poll
,
2573 netif_tx_napi_add(vi
->dev
, &vi
->sq
[i
].napi
, virtnet_poll_tx
,
2574 napi_tx
? napi_weight
: 0);
2576 sg_init_table(vi
->rq
[i
].sg
, ARRAY_SIZE(vi
->rq
[i
].sg
));
2577 ewma_pkt_len_init(&vi
->rq
[i
].mrg_avg_pkt_len
);
2578 sg_init_table(vi
->sq
[i
].sg
, ARRAY_SIZE(vi
->sq
[i
].sg
));
2580 u64_stats_init(&vi
->rq
[i
].stats
.syncp
);
2581 u64_stats_init(&vi
->sq
[i
].stats
.syncp
);
2594 static int init_vqs(struct virtnet_info
*vi
)
2598 /* Allocate send & receive queues */
2599 ret
= virtnet_alloc_queues(vi
);
2603 ret
= virtnet_find_vqs(vi
);
2608 virtnet_set_affinity(vi
);
2614 virtnet_free_queues(vi
);
2620 static ssize_t
mergeable_rx_buffer_size_show(struct netdev_rx_queue
*queue
,
2623 struct virtnet_info
*vi
= netdev_priv(queue
->dev
);
2624 unsigned int queue_index
= get_netdev_rx_queue_index(queue
);
2625 unsigned int headroom
= virtnet_get_headroom(vi
);
2626 unsigned int tailroom
= headroom
? sizeof(struct skb_shared_info
) : 0;
2627 struct ewma_pkt_len
*avg
;
2629 BUG_ON(queue_index
>= vi
->max_queue_pairs
);
2630 avg
= &vi
->rq
[queue_index
].mrg_avg_pkt_len
;
2631 return sprintf(buf
, "%u\n",
2632 get_mergeable_buf_len(&vi
->rq
[queue_index
], avg
,
2633 SKB_DATA_ALIGN(headroom
+ tailroom
)));
2636 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute
=
2637 __ATTR_RO(mergeable_rx_buffer_size
);
2639 static struct attribute
*virtio_net_mrg_rx_attrs
[] = {
2640 &mergeable_rx_buffer_size_attribute
.attr
,
2644 static const struct attribute_group virtio_net_mrg_rx_group
= {
2645 .name
= "virtio_net",
2646 .attrs
= virtio_net_mrg_rx_attrs
2650 static bool virtnet_fail_on_feature(struct virtio_device
*vdev
,
2652 const char *fname
, const char *dname
)
2654 if (!virtio_has_feature(vdev
, fbit
))
2657 dev_err(&vdev
->dev
, "device advertises feature %s but not %s",
2663 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2664 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2666 static bool virtnet_validate_features(struct virtio_device
*vdev
)
2668 if (!virtio_has_feature(vdev
, VIRTIO_NET_F_CTRL_VQ
) &&
2669 (VIRTNET_FAIL_ON(vdev
, VIRTIO_NET_F_CTRL_RX
,
2670 "VIRTIO_NET_F_CTRL_VQ") ||
2671 VIRTNET_FAIL_ON(vdev
, VIRTIO_NET_F_CTRL_VLAN
,
2672 "VIRTIO_NET_F_CTRL_VQ") ||
2673 VIRTNET_FAIL_ON(vdev
, VIRTIO_NET_F_GUEST_ANNOUNCE
,
2674 "VIRTIO_NET_F_CTRL_VQ") ||
2675 VIRTNET_FAIL_ON(vdev
, VIRTIO_NET_F_MQ
, "VIRTIO_NET_F_CTRL_VQ") ||
2676 VIRTNET_FAIL_ON(vdev
, VIRTIO_NET_F_CTRL_MAC_ADDR
,
2677 "VIRTIO_NET_F_CTRL_VQ"))) {
2684 #define MIN_MTU ETH_MIN_MTU
2685 #define MAX_MTU ETH_MAX_MTU
2687 static int virtnet_validate(struct virtio_device
*vdev
)
2689 if (!vdev
->config
->get
) {
2690 dev_err(&vdev
->dev
, "%s failure: config access disabled\n",
2695 if (!virtnet_validate_features(vdev
))
2698 if (virtio_has_feature(vdev
, VIRTIO_NET_F_MTU
)) {
2699 int mtu
= virtio_cread16(vdev
,
2700 offsetof(struct virtio_net_config
,
2703 __virtio_clear_bit(vdev
, VIRTIO_NET_F_MTU
);
2709 static int virtnet_probe(struct virtio_device
*vdev
)
2711 int i
, err
= -ENOMEM
;
2712 struct net_device
*dev
;
2713 struct virtnet_info
*vi
;
2714 u16 max_queue_pairs
;
2717 /* Find if host supports multiqueue virtio_net device */
2718 err
= virtio_cread_feature(vdev
, VIRTIO_NET_F_MQ
,
2719 struct virtio_net_config
,
2720 max_virtqueue_pairs
, &max_queue_pairs
);
2722 /* We need at least 2 queue's */
2723 if (err
|| max_queue_pairs
< VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN
||
2724 max_queue_pairs
> VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX
||
2725 !virtio_has_feature(vdev
, VIRTIO_NET_F_CTRL_VQ
))
2726 max_queue_pairs
= 1;
2728 /* Allocate ourselves a network device with room for our info */
2729 dev
= alloc_etherdev_mq(sizeof(struct virtnet_info
), max_queue_pairs
);
2733 /* Set up network device as normal. */
2734 dev
->priv_flags
|= IFF_UNICAST_FLT
| IFF_LIVE_ADDR_CHANGE
;
2735 dev
->netdev_ops
= &virtnet_netdev
;
2736 dev
->features
= NETIF_F_HIGHDMA
;
2738 dev
->ethtool_ops
= &virtnet_ethtool_ops
;
2739 SET_NETDEV_DEV(dev
, &vdev
->dev
);
2741 /* Do we support "hardware" checksums? */
2742 if (virtio_has_feature(vdev
, VIRTIO_NET_F_CSUM
)) {
2743 /* This opens up the world of extra features. */
2744 dev
->hw_features
|= NETIF_F_HW_CSUM
| NETIF_F_SG
;
2746 dev
->features
|= NETIF_F_HW_CSUM
| NETIF_F_SG
;
2748 if (virtio_has_feature(vdev
, VIRTIO_NET_F_GSO
)) {
2749 dev
->hw_features
|= NETIF_F_TSO
2750 | NETIF_F_TSO_ECN
| NETIF_F_TSO6
;
2752 /* Individual feature bits: what can host handle? */
2753 if (virtio_has_feature(vdev
, VIRTIO_NET_F_HOST_TSO4
))
2754 dev
->hw_features
|= NETIF_F_TSO
;
2755 if (virtio_has_feature(vdev
, VIRTIO_NET_F_HOST_TSO6
))
2756 dev
->hw_features
|= NETIF_F_TSO6
;
2757 if (virtio_has_feature(vdev
, VIRTIO_NET_F_HOST_ECN
))
2758 dev
->hw_features
|= NETIF_F_TSO_ECN
;
2760 dev
->features
|= NETIF_F_GSO_ROBUST
;
2763 dev
->features
|= dev
->hw_features
& NETIF_F_ALL_TSO
;
2764 /* (!csum && gso) case will be fixed by register_netdev() */
2766 if (virtio_has_feature(vdev
, VIRTIO_NET_F_GUEST_CSUM
))
2767 dev
->features
|= NETIF_F_RXCSUM
;
2769 dev
->vlan_features
= dev
->features
;
2771 /* MTU range: 68 - 65535 */
2772 dev
->min_mtu
= MIN_MTU
;
2773 dev
->max_mtu
= MAX_MTU
;
2775 /* Configuration may specify what MAC to use. Otherwise random. */
2776 if (virtio_has_feature(vdev
, VIRTIO_NET_F_MAC
))
2777 virtio_cread_bytes(vdev
,
2778 offsetof(struct virtio_net_config
, mac
),
2779 dev
->dev_addr
, dev
->addr_len
);
2781 eth_hw_addr_random(dev
);
2783 /* Set up our device-specific information */
2784 vi
= netdev_priv(dev
);
2789 INIT_WORK(&vi
->config_work
, virtnet_config_changed_work
);
2791 /* If we can receive ANY GSO packets, we must allocate large ones. */
2792 if (virtio_has_feature(vdev
, VIRTIO_NET_F_GUEST_TSO4
) ||
2793 virtio_has_feature(vdev
, VIRTIO_NET_F_GUEST_TSO6
) ||
2794 virtio_has_feature(vdev
, VIRTIO_NET_F_GUEST_ECN
) ||
2795 virtio_has_feature(vdev
, VIRTIO_NET_F_GUEST_UFO
))
2796 vi
->big_packets
= true;
2798 if (virtio_has_feature(vdev
, VIRTIO_NET_F_MRG_RXBUF
))
2799 vi
->mergeable_rx_bufs
= true;
2801 if (virtio_has_feature(vdev
, VIRTIO_NET_F_MRG_RXBUF
) ||
2802 virtio_has_feature(vdev
, VIRTIO_F_VERSION_1
))
2803 vi
->hdr_len
= sizeof(struct virtio_net_hdr_mrg_rxbuf
);
2805 vi
->hdr_len
= sizeof(struct virtio_net_hdr
);
2807 if (virtio_has_feature(vdev
, VIRTIO_F_ANY_LAYOUT
) ||
2808 virtio_has_feature(vdev
, VIRTIO_F_VERSION_1
))
2809 vi
->any_header_sg
= true;
2811 if (virtio_has_feature(vdev
, VIRTIO_NET_F_CTRL_VQ
))
2814 if (virtio_has_feature(vdev
, VIRTIO_NET_F_MTU
)) {
2815 mtu
= virtio_cread16(vdev
,
2816 offsetof(struct virtio_net_config
,
2818 if (mtu
< dev
->min_mtu
) {
2819 /* Should never trigger: MTU was previously validated
2820 * in virtnet_validate.
2822 dev_err(&vdev
->dev
, "device MTU appears to have changed "
2823 "it is now %d < %d", mtu
, dev
->min_mtu
);
2830 /* TODO: size buffers correctly in this case. */
2831 if (dev
->mtu
> ETH_DATA_LEN
)
2832 vi
->big_packets
= true;
2835 if (vi
->any_header_sg
)
2836 dev
->needed_headroom
= vi
->hdr_len
;
2838 /* Enable multiqueue by default */
2839 if (num_online_cpus() >= max_queue_pairs
)
2840 vi
->curr_queue_pairs
= max_queue_pairs
;
2842 vi
->curr_queue_pairs
= num_online_cpus();
2843 vi
->max_queue_pairs
= max_queue_pairs
;
2845 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
2851 if (vi
->mergeable_rx_bufs
)
2852 dev
->sysfs_rx_queue_group
= &virtio_net_mrg_rx_group
;
2854 netif_set_real_num_tx_queues(dev
, vi
->curr_queue_pairs
);
2855 netif_set_real_num_rx_queues(dev
, vi
->curr_queue_pairs
);
2857 virtnet_init_settings(dev
);
2859 err
= register_netdev(dev
);
2861 pr_debug("virtio_net: registering device failed\n");
2865 virtio_device_ready(vdev
);
2867 err
= virtnet_cpu_notif_add(vi
);
2869 pr_debug("virtio_net: registering cpu notifier failed\n");
2870 goto free_unregister_netdev
;
2873 virtnet_set_queues(vi
, vi
->curr_queue_pairs
);
2875 /* Assume link up if device can't report link status,
2876 otherwise get link status from config. */
2877 netif_carrier_off(dev
);
2878 if (virtio_has_feature(vi
->vdev
, VIRTIO_NET_F_STATUS
)) {
2879 schedule_work(&vi
->config_work
);
2881 vi
->status
= VIRTIO_NET_S_LINK_UP
;
2882 virtnet_update_settings(vi
);
2883 netif_carrier_on(dev
);
2886 for (i
= 0; i
< ARRAY_SIZE(guest_offloads
); i
++)
2887 if (virtio_has_feature(vi
->vdev
, guest_offloads
[i
]))
2888 set_bit(guest_offloads
[i
], &vi
->guest_offloads
);
2890 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2891 dev
->name
, max_queue_pairs
);
2895 free_unregister_netdev
:
2896 vi
->vdev
->config
->reset(vdev
);
2898 unregister_netdev(dev
);
2900 cancel_delayed_work_sync(&vi
->refill
);
2901 free_receive_page_frags(vi
);
2902 virtnet_del_vqs(vi
);
2908 static void remove_vq_common(struct virtnet_info
*vi
)
2910 vi
->vdev
->config
->reset(vi
->vdev
);
2912 /* Free unused buffers in both send and recv, if any. */
2913 free_unused_bufs(vi
);
2915 free_receive_bufs(vi
);
2917 free_receive_page_frags(vi
);
2919 virtnet_del_vqs(vi
);
2922 static void virtnet_remove(struct virtio_device
*vdev
)
2924 struct virtnet_info
*vi
= vdev
->priv
;
2926 virtnet_cpu_notif_remove(vi
);
2928 /* Make sure no work handler is accessing the device. */
2929 flush_work(&vi
->config_work
);
2931 unregister_netdev(vi
->dev
);
2933 remove_vq_common(vi
);
2935 free_netdev(vi
->dev
);
2938 static __maybe_unused
int virtnet_freeze(struct virtio_device
*vdev
)
2940 struct virtnet_info
*vi
= vdev
->priv
;
2942 virtnet_cpu_notif_remove(vi
);
2943 virtnet_freeze_down(vdev
);
2944 remove_vq_common(vi
);
2949 static __maybe_unused
int virtnet_restore(struct virtio_device
*vdev
)
2951 struct virtnet_info
*vi
= vdev
->priv
;
2954 err
= virtnet_restore_up(vdev
);
2957 virtnet_set_queues(vi
, vi
->curr_queue_pairs
);
2959 err
= virtnet_cpu_notif_add(vi
);
2966 static struct virtio_device_id id_table
[] = {
2967 { VIRTIO_ID_NET
, VIRTIO_DEV_ANY_ID
},
2971 #define VIRTNET_FEATURES \
2972 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2974 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2975 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2976 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2977 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2978 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2979 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2980 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2981 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
2982 VIRTIO_NET_F_SPEED_DUPLEX
2984 static unsigned int features
[] = {
2988 static unsigned int features_legacy
[] = {
2991 VIRTIO_F_ANY_LAYOUT
,
2994 static struct virtio_driver virtio_net_driver
= {
2995 .feature_table
= features
,
2996 .feature_table_size
= ARRAY_SIZE(features
),
2997 .feature_table_legacy
= features_legacy
,
2998 .feature_table_size_legacy
= ARRAY_SIZE(features_legacy
),
2999 .driver
.name
= KBUILD_MODNAME
,
3000 .driver
.owner
= THIS_MODULE
,
3001 .id_table
= id_table
,
3002 .validate
= virtnet_validate
,
3003 .probe
= virtnet_probe
,
3004 .remove
= virtnet_remove
,
3005 .config_changed
= virtnet_config_changed
,
3006 #ifdef CONFIG_PM_SLEEP
3007 .freeze
= virtnet_freeze
,
3008 .restore
= virtnet_restore
,
3012 static __init
int virtio_net_driver_init(void)
3016 ret
= cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN
, "virtio/net:online",
3018 virtnet_cpu_down_prep
);
3021 virtionet_online
= ret
;
3022 ret
= cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD
, "virtio/net:dead",
3023 NULL
, virtnet_cpu_dead
);
3027 ret
= register_virtio_driver(&virtio_net_driver
);
3032 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD
);
3034 cpuhp_remove_multi_state(virtionet_online
);
3038 module_init(virtio_net_driver_init
);
3040 static __exit
void virtio_net_driver_exit(void)
3042 unregister_virtio_driver(&virtio_net_driver
);
3043 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD
);
3044 cpuhp_remove_multi_state(virtionet_online
);
3046 module_exit(virtio_net_driver_exit
);
3048 MODULE_DEVICE_TABLE(virtio
, id_table
);
3049 MODULE_DESCRIPTION("Virtio network driver");
3050 MODULE_LICENSE("GPL");