Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1 | /* A network driver using virtio. |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2 | * |
| 3 | * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation |
| 4 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
Jeff Kirsher | adf8d3f | 2013-12-06 06:28:47 -0800 | [diff] [blame] | 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 17 | */ |
| 18 | //#define DEBUG |
| 19 | #include <linux/netdevice.h> |
| 20 | #include <linux/etherdevice.h> |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 21 | #include <linux/ethtool.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/virtio.h> |
| 24 | #include <linux/virtio_net.h> |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 25 | #include <linux/bpf.h> |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 26 | #include <linux/bpf_trace.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 27 | #include <linux/scatterlist.h> |
Alex Williamson | e918085a | 2009-01-25 18:06:26 -0800 | [diff] [blame] | 28 | #include <linux/if_vlan.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 30 | #include <linux/cpu.h> |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 31 | #include <linux/average.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 32 | |
Amerigo Wang | d34710e | 2013-05-09 19:50:51 +0000 | [diff] [blame] | 33 | static int napi_weight = NAPI_POLL_WEIGHT; |
Dor Laor | 6c0cd7c | 2007-12-16 15:19:43 +0200 | [diff] [blame] | 34 | module_param(napi_weight, int, 0444); |
| 35 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 36 | static bool csum = true, gso = true, napi_tx; |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 37 | module_param(csum, bool, 0444); |
| 38 | module_param(gso, bool, 0444); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 39 | module_param(napi_tx, bool, 0644); |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 40 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 41 | /* FIXME: MTU in config. */ |
Michael Dalton | 5061de3 | 2013-11-14 10:41:04 -0800 | [diff] [blame] | 42 | #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 43 | #define GOOD_COPY_LEN 128 |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 44 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 45 | #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD) |
| 46 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 47 | /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */ |
| 48 | #define VIRTIO_XDP_HEADROOM 256 |
| 49 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 50 | /* RX packet size EWMA. The average packet size is used to determine the packet |
| 51 | * buffer size when refilling RX rings. As the entire RX ring may be refilled |
| 52 | * at once, the weight is chosen so that the EWMA will be insensitive to short- |
| 53 | * term, transient changes in packet size. |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 54 | */ |
Johannes Berg | eb1e011 | 2017-02-15 09:49:26 +0100 | [diff] [blame] | 55 | DECLARE_EWMA(pkt_len, 0, 64) |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 56 | |
Michael S. Tsirkin | d0fa28f | 2017-01-23 21:37:52 +0200 | [diff] [blame] | 57 | /* With mergeable buffers we align buffer address and use the low bits to |
| 58 | * encode its true size. Buffer size is up to 1 page so we need to align to |
| 59 | * square root of page size to ensure we reserve enough bits to encode the true |
| 60 | * size. |
| 61 | */ |
| 62 | #define MERGEABLE_BUFFER_MIN_ALIGN_SHIFT ((PAGE_SHIFT + 1) / 2) |
| 63 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 64 | /* Minimum alignment for mergeable packet buffers. */ |
Michael S. Tsirkin | d0fa28f | 2017-01-23 21:37:52 +0200 | [diff] [blame] | 65 | #define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, \ |
| 66 | 1 << MERGEABLE_BUFFER_MIN_ALIGN_SHIFT) |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 67 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 68 | #define VIRTNET_DRIVER_VERSION "1.0.0" |
Alex Williamson | 2a41f71 | 2009-02-04 09:02:34 +0000 | [diff] [blame] | 69 | |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 70 | struct virtnet_stats { |
Eric Dumazet | 83a2705 | 2012-06-05 22:35:24 +0000 | [diff] [blame] | 71 | struct u64_stats_sync tx_syncp; |
| 72 | struct u64_stats_sync rx_syncp; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 73 | u64 tx_bytes; |
| 74 | u64 tx_packets; |
| 75 | |
| 76 | u64 rx_bytes; |
| 77 | u64 rx_packets; |
| 78 | }; |
| 79 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 80 | /* Internal representation of a send virtqueue */ |
| 81 | struct send_queue { |
| 82 | /* Virtqueue associated with this send _queue */ |
| 83 | struct virtqueue *vq; |
| 84 | |
| 85 | /* TX: fragments + linear part + virtio header */ |
| 86 | struct scatterlist sg[MAX_SKB_FRAGS + 2]; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 87 | |
| 88 | /* Name of the send queue: output.$index */ |
| 89 | char name[40]; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 90 | |
| 91 | struct napi_struct napi; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | /* Internal representation of a receive virtqueue */ |
| 95 | struct receive_queue { |
| 96 | /* Virtqueue associated with this receive_queue */ |
| 97 | struct virtqueue *vq; |
| 98 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 99 | struct napi_struct napi; |
| 100 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 101 | struct bpf_prog __rcu *xdp_prog; |
| 102 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 103 | /* Chain pages by the private ptr. */ |
| 104 | struct page *pages; |
| 105 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 106 | /* Average packet length for mergeable receive buffers. */ |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 107 | struct ewma_pkt_len mrg_avg_pkt_len; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 108 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 109 | /* Page frag for packet buffer allocation. */ |
| 110 | struct page_frag alloc_frag; |
| 111 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 112 | /* RX: fragments + linear part + virtio header */ |
| 113 | struct scatterlist sg[MAX_SKB_FRAGS + 2]; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 114 | |
| 115 | /* Name of this receive queue: input.$index */ |
| 116 | char name[40]; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | struct virtnet_info { |
| 120 | struct virtio_device *vdev; |
| 121 | struct virtqueue *cvq; |
| 122 | struct net_device *dev; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 123 | struct send_queue *sq; |
| 124 | struct receive_queue *rq; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 125 | unsigned int status; |
| 126 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 127 | /* Max # of queue pairs supported by the device */ |
| 128 | u16 max_queue_pairs; |
| 129 | |
| 130 | /* # of queue pairs currently used by the driver */ |
| 131 | u16 curr_queue_pairs; |
| 132 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 133 | /* # of XDP queue pairs currently used by the driver */ |
| 134 | u16 xdp_queue_pairs; |
| 135 | |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 136 | /* I like... big packets and I cannot lie! */ |
| 137 | bool big_packets; |
| 138 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 139 | /* Host will merge rx buffers for big packets (shake it! shake it!) */ |
| 140 | bool mergeable_rx_bufs; |
| 141 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 142 | /* Has control virtqueue */ |
| 143 | bool has_cvq; |
| 144 | |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 145 | /* Host can handle any s/g split between our header and packet data */ |
| 146 | bool any_header_sg; |
| 147 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 148 | /* Packet virtio header size */ |
| 149 | u8 hdr_len; |
| 150 | |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 151 | /* Active statistics */ |
| 152 | struct virtnet_stats __percpu *stats; |
| 153 | |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 154 | /* Work struct for refilling if we run low on memory. */ |
| 155 | struct delayed_work refill; |
| 156 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 157 | /* Work struct for config space updates */ |
| 158 | struct work_struct config_work; |
| 159 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 160 | /* Does the affinity hint is set for virtqueues? */ |
| 161 | bool affinity_hint_set; |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 162 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 163 | /* CPU hotplug instances for online & dead */ |
| 164 | struct hlist_node node; |
| 165 | struct hlist_node node_dead; |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 166 | |
| 167 | /* Control VQ buffers: protected by the rtnl lock */ |
| 168 | struct virtio_net_ctrl_hdr ctrl_hdr; |
| 169 | virtio_net_ctrl_ack ctrl_status; |
Andy Lutomirski | a725ee3 | 2016-07-18 15:34:49 -0700 | [diff] [blame] | 170 | struct virtio_net_ctrl_mq ctrl_mq; |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 171 | u8 ctrl_promisc; |
| 172 | u8 ctrl_allmulti; |
Andy Lutomirski | a725ee3 | 2016-07-18 15:34:49 -0700 | [diff] [blame] | 173 | u16 ctrl_vid; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 174 | |
| 175 | /* Ethtool settings */ |
| 176 | u8 duplex; |
| 177 | u32 speed; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 178 | }; |
| 179 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 180 | struct padded_vnet_hdr { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 181 | struct virtio_net_hdr_mrg_rxbuf hdr; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 182 | /* |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 183 | * hdr is in a separate sg buffer, and data sg buffer shares same page |
| 184 | * with this header sg. This padding makes next sg 16 byte aligned |
| 185 | * after the header. |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 186 | */ |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 187 | char padding[4]; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 188 | }; |
| 189 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 190 | /* Converting between virtqueue no. and kernel tx/rx queue no. |
| 191 | * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq |
| 192 | */ |
| 193 | static int vq2txq(struct virtqueue *vq) |
| 194 | { |
Rusty Russell | 9d0ca6e | 2013-03-21 14:17:34 +0000 | [diff] [blame] | 195 | return (vq->index - 1) / 2; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | static int txq2vq(int txq) |
| 199 | { |
| 200 | return txq * 2 + 1; |
| 201 | } |
| 202 | |
| 203 | static int vq2rxq(struct virtqueue *vq) |
| 204 | { |
Rusty Russell | 9d0ca6e | 2013-03-21 14:17:34 +0000 | [diff] [blame] | 205 | return vq->index / 2; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | static int rxq2vq(int rxq) |
| 209 | { |
| 210 | return rxq * 2; |
| 211 | } |
| 212 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 213 | static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 214 | { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 215 | return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 216 | } |
| 217 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 218 | /* |
| 219 | * private is used to chain pages for big packets, put the whole |
| 220 | * most recent used list in the beginning for reuse |
| 221 | */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 222 | static void give_pages(struct receive_queue *rq, struct page *page) |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 223 | { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 224 | struct page *end; |
| 225 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 226 | /* Find end of list, sew whole thing into vi->rq.pages. */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 227 | for (end = page; end->private; end = (struct page *)end->private); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 228 | end->private = (unsigned long)rq->pages; |
| 229 | rq->pages = page; |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 230 | } |
| 231 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 232 | static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask) |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 233 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 234 | struct page *p = rq->pages; |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 235 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 236 | if (p) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 237 | rq->pages = (struct page *)p->private; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 238 | /* clear private here, it is used to chain pages */ |
| 239 | p->private = 0; |
| 240 | } else |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 241 | p = alloc_page(gfp_mask); |
| 242 | return p; |
| 243 | } |
| 244 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 245 | static void virtqueue_napi_schedule(struct napi_struct *napi, |
| 246 | struct virtqueue *vq) |
| 247 | { |
| 248 | if (napi_schedule_prep(napi)) { |
| 249 | virtqueue_disable_cb(vq); |
| 250 | __napi_schedule(napi); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | static void virtqueue_napi_complete(struct napi_struct *napi, |
| 255 | struct virtqueue *vq, int processed) |
| 256 | { |
| 257 | int opaque; |
| 258 | |
| 259 | opaque = virtqueue_enable_cb_prepare(vq); |
| 260 | if (napi_complete_done(napi, processed) && |
| 261 | unlikely(virtqueue_poll(vq, opaque))) |
| 262 | virtqueue_napi_schedule(napi, vq); |
| 263 | } |
| 264 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 265 | static void skb_xmit_done(struct virtqueue *vq) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 266 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 267 | struct virtnet_info *vi = vq->vdev->priv; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 268 | struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 269 | |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 270 | /* Suppress further interrupts. */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 271 | virtqueue_disable_cb(vq); |
Rusty Russell | 11a3a15 | 2008-05-26 17:48:13 +1000 | [diff] [blame] | 272 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 273 | if (napi->weight) |
| 274 | virtqueue_napi_schedule(napi, vq); |
| 275 | else |
| 276 | /* We were probably waiting for more output buffers. */ |
| 277 | netif_wake_subqueue(vi->dev, vq2txq(vq)); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 278 | } |
| 279 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 280 | static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx) |
| 281 | { |
| 282 | unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1); |
| 283 | return (truesize + 1) * MERGEABLE_BUFFER_ALIGN; |
| 284 | } |
| 285 | |
| 286 | static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx) |
| 287 | { |
| 288 | return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN); |
| 289 | |
| 290 | } |
| 291 | |
| 292 | static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize) |
| 293 | { |
| 294 | unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN; |
| 295 | return (unsigned long)buf | (size - 1); |
| 296 | } |
| 297 | |
Mike Waychison | 3464645 | 2012-01-04 12:52:32 +0000 | [diff] [blame] | 298 | /* Called from bottom half context */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 299 | static struct sk_buff *page_to_skb(struct virtnet_info *vi, |
| 300 | struct receive_queue *rq, |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 301 | struct page *page, unsigned int offset, |
| 302 | unsigned int len, unsigned int truesize) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 303 | { |
| 304 | struct sk_buff *skb; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 305 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 306 | unsigned int copy, hdr_len, hdr_padded_len; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 307 | char *p; |
| 308 | |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 309 | p = page_address(page) + offset; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 310 | |
| 311 | /* copy small packet so we can reuse these pages for small data */ |
Paolo Abeni | c67f5db | 2016-03-17 15:44:00 +0100 | [diff] [blame] | 312 | skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 313 | if (unlikely(!skb)) |
| 314 | return NULL; |
| 315 | |
| 316 | hdr = skb_vnet_hdr(skb); |
| 317 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 318 | hdr_len = vi->hdr_len; |
| 319 | if (vi->mergeable_rx_bufs) |
| 320 | hdr_padded_len = sizeof *hdr; |
| 321 | else |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 322 | hdr_padded_len = sizeof(struct padded_vnet_hdr); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 323 | |
| 324 | memcpy(hdr, p, hdr_len); |
| 325 | |
| 326 | len -= hdr_len; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 327 | offset += hdr_padded_len; |
| 328 | p += hdr_padded_len; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 329 | |
| 330 | copy = len; |
| 331 | if (copy > skb_tailroom(skb)) |
| 332 | copy = skb_tailroom(skb); |
| 333 | memcpy(skb_put(skb, copy), p, copy); |
| 334 | |
| 335 | len -= copy; |
| 336 | offset += copy; |
| 337 | |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 338 | if (vi->mergeable_rx_bufs) { |
| 339 | if (len) |
| 340 | skb_add_rx_frag(skb, 0, page, offset, len, truesize); |
| 341 | else |
| 342 | put_page(page); |
| 343 | return skb; |
| 344 | } |
| 345 | |
Sasha Levin | e878d78 | 2011-09-28 04:40:54 +0000 | [diff] [blame] | 346 | /* |
| 347 | * Verify that we can indeed put this data into a skb. |
| 348 | * This is here to handle cases when the device erroneously |
| 349 | * tries to receive more than is possible. This is usually |
| 350 | * the case of a broken device. |
| 351 | */ |
| 352 | if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) { |
Amerigo Wang | be44389 | 2012-11-08 17:47:28 +0000 | [diff] [blame] | 353 | net_dbg_ratelimited("%s: too much data\n", skb->dev->name); |
Sasha Levin | e878d78 | 2011-09-28 04:40:54 +0000 | [diff] [blame] | 354 | dev_kfree_skb(skb); |
| 355 | return NULL; |
| 356 | } |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 357 | BUG_ON(offset >= PAGE_SIZE); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 358 | while (len) { |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 359 | unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len); |
| 360 | skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset, |
| 361 | frag_size, truesize); |
| 362 | len -= frag_size; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 363 | page = (struct page *)page->private; |
| 364 | offset = 0; |
| 365 | } |
| 366 | |
| 367 | if (page) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 368 | give_pages(rq, page); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 369 | |
| 370 | return skb; |
| 371 | } |
| 372 | |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 373 | static bool virtnet_xdp_xmit(struct virtnet_info *vi, |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 374 | struct receive_queue *rq, |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 375 | struct xdp_buff *xdp) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 376 | { |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 377 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 378 | unsigned int len; |
John Fastabend | 722d828 | 2017-02-02 19:15:32 -0800 | [diff] [blame] | 379 | struct send_queue *sq; |
| 380 | unsigned int qp; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 381 | void *xdp_sent; |
| 382 | int err; |
| 383 | |
John Fastabend | 722d828 | 2017-02-02 19:15:32 -0800 | [diff] [blame] | 384 | qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id(); |
| 385 | sq = &vi->sq[qp]; |
| 386 | |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 387 | /* Free up any pending old buffers before queueing new ones. */ |
| 388 | while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 389 | struct page *sent_page = virt_to_head_page(xdp_sent); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 390 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 391 | put_page(sent_page); |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 392 | } |
| 393 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 394 | xdp->data -= vi->hdr_len; |
| 395 | /* Zero header and leave csum up to XDP layers */ |
| 396 | hdr = xdp->data; |
| 397 | memset(hdr, 0, vi->hdr_len); |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 398 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 399 | sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 400 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 401 | err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC); |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 402 | if (unlikely(err)) { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 403 | struct page *page = virt_to_head_page(xdp->data); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 404 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 405 | put_page(page); |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 406 | return false; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | virtqueue_kick(sq->vq); |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 410 | return true; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 411 | } |
| 412 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 413 | static unsigned int virtnet_get_headroom(struct virtnet_info *vi) |
| 414 | { |
| 415 | return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0; |
| 416 | } |
| 417 | |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 418 | static struct sk_buff *receive_small(struct net_device *dev, |
| 419 | struct virtnet_info *vi, |
| 420 | struct receive_queue *rq, |
| 421 | void *buf, unsigned int len) |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 422 | { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 423 | struct sk_buff *skb; |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 424 | struct bpf_prog *xdp_prog; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 425 | unsigned int xdp_headroom = virtnet_get_headroom(vi); |
| 426 | unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom; |
| 427 | unsigned int headroom = vi->hdr_len + header_offset; |
| 428 | unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + |
| 429 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 430 | unsigned int delta = 0; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 431 | len -= vi->hdr_len; |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 432 | |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 433 | rcu_read_lock(); |
| 434 | xdp_prog = rcu_dereference(rq->xdp_prog); |
| 435 | if (xdp_prog) { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 436 | struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 437 | struct xdp_buff xdp; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 438 | void *orig_data; |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 439 | u32 act; |
| 440 | |
| 441 | if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags)) |
| 442 | goto err_xdp; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 443 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 444 | xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len; |
| 445 | xdp.data = xdp.data_hard_start + xdp_headroom; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 446 | xdp.data_end = xdp.data + len; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 447 | orig_data = xdp.data; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 448 | act = bpf_prog_run_xdp(xdp_prog, &xdp); |
| 449 | |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 450 | switch (act) { |
| 451 | case XDP_PASS: |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 452 | /* Recalculate length in case bpf program changed it */ |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 453 | delta = orig_data - xdp.data; |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 454 | break; |
| 455 | case XDP_TX: |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 456 | if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp))) |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 457 | trace_xdp_exception(vi->dev, xdp_prog, act); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 458 | rcu_read_unlock(); |
| 459 | goto xdp_xmit; |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 460 | default: |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 461 | bpf_warn_invalid_xdp_action(act); |
| 462 | case XDP_ABORTED: |
| 463 | trace_xdp_exception(vi->dev, xdp_prog, act); |
| 464 | case XDP_DROP: |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 465 | goto err_xdp; |
| 466 | } |
| 467 | } |
| 468 | rcu_read_unlock(); |
| 469 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 470 | skb = build_skb(buf, buflen); |
| 471 | if (!skb) { |
| 472 | put_page(virt_to_head_page(buf)); |
| 473 | goto err; |
| 474 | } |
| 475 | skb_reserve(skb, headroom - delta); |
| 476 | skb_put(skb, len + delta); |
| 477 | if (!delta) { |
| 478 | buf += header_offset; |
| 479 | memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len); |
| 480 | } /* keep zeroed vnet hdr since packet was changed by bpf */ |
| 481 | |
| 482 | err: |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 483 | return skb; |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 484 | |
| 485 | err_xdp: |
| 486 | rcu_read_unlock(); |
| 487 | dev->stats.rx_dropped++; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 488 | put_page(virt_to_head_page(buf)); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 489 | xdp_xmit: |
| 490 | return NULL; |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | static struct sk_buff *receive_big(struct net_device *dev, |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 494 | struct virtnet_info *vi, |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 495 | struct receive_queue *rq, |
| 496 | void *buf, |
| 497 | unsigned int len) |
| 498 | { |
| 499 | struct page *page = buf; |
Jason Wang | c47a43d | 2016-12-23 22:37:31 +0800 | [diff] [blame] | 500 | struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 501 | |
| 502 | if (unlikely(!skb)) |
| 503 | goto err; |
| 504 | |
| 505 | return skb; |
| 506 | |
| 507 | err: |
| 508 | dev->stats.rx_dropped++; |
| 509 | give_pages(rq, page); |
| 510 | return NULL; |
| 511 | } |
| 512 | |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 513 | /* The conditions to enable XDP should preclude the underlying device from |
| 514 | * sending packets across multiple buffers (num_buf > 1). However per spec |
| 515 | * it does not appear to be illegal to do so but rather just against convention. |
| 516 | * So in order to avoid making a system unresponsive the packets are pushed |
| 517 | * into a page and the XDP program is run. This will be extremely slow and we |
| 518 | * push a warning to the user to fix this as soon as possible. Fixing this may |
| 519 | * require resolving the underlying hardware to determine why multiple buffers |
| 520 | * are being received or simply loading the XDP program in the ingress stack |
| 521 | * after the skb is built because there is no advantage to running it here |
| 522 | * anymore. |
| 523 | */ |
| 524 | static struct page *xdp_linearize_page(struct receive_queue *rq, |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 525 | u16 *num_buf, |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 526 | struct page *p, |
| 527 | int offset, |
| 528 | unsigned int *len) |
| 529 | { |
| 530 | struct page *page = alloc_page(GFP_ATOMIC); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 531 | unsigned int page_off = VIRTIO_XDP_HEADROOM; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 532 | |
| 533 | if (!page) |
| 534 | return NULL; |
| 535 | |
| 536 | memcpy(page_address(page) + page_off, page_address(p) + offset, *len); |
| 537 | page_off += *len; |
| 538 | |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 539 | while (--*num_buf) { |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 540 | unsigned int buflen; |
| 541 | unsigned long ctx; |
| 542 | void *buf; |
| 543 | int off; |
| 544 | |
| 545 | ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen); |
| 546 | if (unlikely(!ctx)) |
| 547 | goto err_buf; |
| 548 | |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 549 | buf = mergeable_ctx_to_buf_address(ctx); |
| 550 | p = virt_to_head_page(buf); |
| 551 | off = buf - page_address(p); |
| 552 | |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 553 | /* guard against a misconfigured or uncooperative backend that |
| 554 | * is sending packet larger than the MTU. |
| 555 | */ |
| 556 | if ((page_off + buflen) > PAGE_SIZE) { |
| 557 | put_page(p); |
| 558 | goto err_buf; |
| 559 | } |
| 560 | |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 561 | memcpy(page_address(page) + page_off, |
| 562 | page_address(p) + off, buflen); |
| 563 | page_off += buflen; |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 564 | put_page(p); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 565 | } |
| 566 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 567 | /* Headroom does not contribute to packet length */ |
| 568 | *len = page_off - VIRTIO_XDP_HEADROOM; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 569 | return page; |
| 570 | err_buf: |
| 571 | __free_pages(page, 0); |
| 572 | return NULL; |
| 573 | } |
| 574 | |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 575 | static struct sk_buff *receive_mergeable(struct net_device *dev, |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 576 | struct virtnet_info *vi, |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 577 | struct receive_queue *rq, |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 578 | unsigned long ctx, |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 579 | unsigned int len) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 580 | { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 581 | void *buf = mergeable_ctx_to_buf_address(ctx); |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 582 | struct virtio_net_hdr_mrg_rxbuf *hdr = buf; |
| 583 | u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 584 | struct page *page = virt_to_head_page(buf); |
| 585 | int offset = buf - page_address(page); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 586 | struct sk_buff *head_skb, *curr_skb; |
| 587 | struct bpf_prog *xdp_prog; |
| 588 | unsigned int truesize; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 589 | |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 590 | head_skb = NULL; |
| 591 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 592 | rcu_read_lock(); |
| 593 | xdp_prog = rcu_dereference(rq->xdp_prog); |
| 594 | if (xdp_prog) { |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 595 | struct page *xdp_page; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 596 | struct xdp_buff xdp; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 597 | void *data; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 598 | u32 act; |
| 599 | |
Jason Wang | 73b62bd | 2016-12-23 22:37:24 +0800 | [diff] [blame] | 600 | /* This happens when rx buffer size is underestimated */ |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 601 | if (unlikely(num_buf > 1)) { |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 602 | /* linearize data for XDP */ |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 603 | xdp_page = xdp_linearize_page(rq, &num_buf, |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 604 | page, offset, &len); |
| 605 | if (!xdp_page) |
| 606 | goto err_xdp; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 607 | offset = VIRTIO_XDP_HEADROOM; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 608 | } else { |
| 609 | xdp_page = page; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | /* Transient failure which in theory could occur if |
| 613 | * in-flight packets from before XDP was enabled reach |
| 614 | * the receive path after XDP is loaded. In practice I |
| 615 | * was not able to create this condition. |
| 616 | */ |
Jason Wang | b00f70b | 2016-12-23 22:37:28 +0800 | [diff] [blame] | 617 | if (unlikely(hdr->hdr.gso_type)) |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 618 | goto err_xdp; |
| 619 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 620 | /* Allow consuming headroom but reserve enough space to push |
| 621 | * the descriptor on if we get an XDP_TX return code. |
| 622 | */ |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 623 | data = page_address(xdp_page) + offset; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 624 | xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 625 | xdp.data = data + vi->hdr_len; |
| 626 | xdp.data_end = xdp.data + (len - vi->hdr_len); |
| 627 | act = bpf_prog_run_xdp(xdp_prog, &xdp); |
| 628 | |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 629 | switch (act) { |
| 630 | case XDP_PASS: |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 631 | /* recalculate offset to account for any header |
| 632 | * adjustments. Note other cases do not build an |
| 633 | * skb and avoid using offset |
| 634 | */ |
| 635 | offset = xdp.data - |
| 636 | page_address(xdp_page) - vi->hdr_len; |
| 637 | |
Jason Wang | 1830f89 | 2016-12-23 22:37:27 +0800 | [diff] [blame] | 638 | /* We can only create skb based on xdp_page. */ |
| 639 | if (unlikely(xdp_page != page)) { |
| 640 | rcu_read_unlock(); |
| 641 | put_page(page); |
| 642 | head_skb = page_to_skb(vi, rq, xdp_page, |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 643 | offset, len, PAGE_SIZE); |
Jason Wang | 5c33474 | 2016-12-23 22:37:29 +0800 | [diff] [blame] | 644 | ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len); |
Jason Wang | 1830f89 | 2016-12-23 22:37:27 +0800 | [diff] [blame] | 645 | return head_skb; |
| 646 | } |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 647 | break; |
| 648 | case XDP_TX: |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 649 | if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp))) |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 650 | trace_xdp_exception(vi->dev, xdp_prog, act); |
Jason Wang | 5c33474 | 2016-12-23 22:37:29 +0800 | [diff] [blame] | 651 | ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 652 | if (unlikely(xdp_page != page)) |
| 653 | goto err_xdp; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 654 | rcu_read_unlock(); |
| 655 | goto xdp_xmit; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 656 | default: |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 657 | bpf_warn_invalid_xdp_action(act); |
| 658 | case XDP_ABORTED: |
| 659 | trace_xdp_exception(vi->dev, xdp_prog, act); |
| 660 | case XDP_DROP: |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 661 | if (unlikely(xdp_page != page)) |
| 662 | __free_pages(xdp_page, 0); |
Jason Wang | 5c33474 | 2016-12-23 22:37:29 +0800 | [diff] [blame] | 663 | ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 664 | goto err_xdp; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 665 | } |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 666 | } |
| 667 | rcu_read_unlock(); |
| 668 | |
| 669 | truesize = max(len, mergeable_ctx_to_buf_truesize(ctx)); |
| 670 | head_skb = page_to_skb(vi, rq, page, offset, len, truesize); |
| 671 | curr_skb = head_skb; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 672 | |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 673 | if (unlikely(!curr_skb)) |
| 674 | goto err_skb; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 675 | while (--num_buf) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 676 | int num_skb_frags; |
| 677 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 678 | ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len); |
| 679 | if (unlikely(!ctx)) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 680 | pr_debug("%s: rx error: %d buffers out of %d missing\n", |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 681 | dev->name, num_buf, |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 682 | virtio16_to_cpu(vi->vdev, |
| 683 | hdr->num_buffers)); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 684 | dev->stats.rx_length_errors++; |
| 685 | goto err_buf; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 686 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 687 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 688 | buf = mergeable_ctx_to_buf_address(ctx); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 689 | page = virt_to_head_page(buf); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 690 | |
| 691 | num_skb_frags = skb_shinfo(curr_skb)->nr_frags; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 692 | if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) { |
| 693 | struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 694 | |
| 695 | if (unlikely(!nskb)) |
| 696 | goto err_skb; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 697 | if (curr_skb == head_skb) |
| 698 | skb_shinfo(curr_skb)->frag_list = nskb; |
| 699 | else |
| 700 | curr_skb->next = nskb; |
| 701 | curr_skb = nskb; |
| 702 | head_skb->truesize += nskb->truesize; |
| 703 | num_skb_frags = 0; |
| 704 | } |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 705 | truesize = max(len, mergeable_ctx_to_buf_truesize(ctx)); |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 706 | if (curr_skb != head_skb) { |
| 707 | head_skb->data_len += len; |
| 708 | head_skb->len += len; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 709 | head_skb->truesize += truesize; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 710 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 711 | offset = buf - page_address(page); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 712 | if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) { |
| 713 | put_page(page); |
| 714 | skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1, |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 715 | len, truesize); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 716 | } else { |
| 717 | skb_add_rx_frag(curr_skb, num_skb_frags, page, |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 718 | offset, len, truesize); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 719 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 720 | } |
| 721 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 722 | ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 723 | return head_skb; |
| 724 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 725 | err_xdp: |
| 726 | rcu_read_unlock(); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 727 | err_skb: |
| 728 | put_page(page); |
| 729 | while (--num_buf) { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 730 | ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len); |
| 731 | if (unlikely(!ctx)) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 732 | pr_debug("%s: rx error: %d buffers missing\n", |
| 733 | dev->name, num_buf); |
| 734 | dev->stats.rx_length_errors++; |
| 735 | break; |
| 736 | } |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 737 | page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx)); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 738 | put_page(page); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 739 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 740 | err_buf: |
| 741 | dev->stats.rx_dropped++; |
| 742 | dev_kfree_skb(head_skb); |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 743 | xdp_xmit: |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 744 | return NULL; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 747 | static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq, |
| 748 | void *buf, unsigned int len) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 749 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 750 | struct net_device *dev = vi->dev; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 751 | struct sk_buff *skb; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 752 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 753 | int ret; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 754 | |
Michael S. Tsirkin | bcff316 | 2014-10-24 00:22:11 +0300 | [diff] [blame] | 755 | if (unlikely(len < vi->hdr_len + ETH_HLEN)) { |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 756 | pr_debug("%s: short packet %i\n", dev->name, len); |
| 757 | dev->stats.rx_length_errors++; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 758 | if (vi->mergeable_rx_bufs) { |
| 759 | unsigned long ctx = (unsigned long)buf; |
| 760 | void *base = mergeable_ctx_to_buf_address(ctx); |
| 761 | put_page(virt_to_head_page(base)); |
| 762 | } else if (vi->big_packets) { |
Michael Dalton | 98bfd23 | 2013-12-05 13:14:05 -0800 | [diff] [blame] | 763 | give_pages(rq, buf); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 764 | } else { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 765 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 766 | } |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 767 | return 0; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 768 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 769 | |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 770 | if (vi->mergeable_rx_bufs) |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 771 | skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 772 | else if (vi->big_packets) |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 773 | skb = receive_big(dev, vi, rq, buf, len); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 774 | else |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 775 | skb = receive_small(dev, vi, rq, buf, len); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 776 | |
| 777 | if (unlikely(!skb)) |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 778 | return 0; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 779 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 780 | hdr = skb_vnet_hdr(skb); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 781 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 782 | ret = skb->len; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 783 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 784 | if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) |
Jason Wang | 10a8d94 | 2011-06-10 00:56:17 +0000 | [diff] [blame] | 785 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 786 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 787 | if (virtio_net_hdr_to_skb(skb, &hdr->hdr, |
| 788 | virtio_is_little_endian(vi->vdev))) { |
| 789 | net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n", |
| 790 | dev->name, hdr->hdr.gso_type, |
| 791 | hdr->hdr.gso_size); |
| 792 | goto frame_err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 793 | } |
| 794 | |
Mike Rapoport | d1dc06d | 2016-06-14 08:29:38 +0300 | [diff] [blame] | 795 | skb->protocol = eth_type_trans(skb, dev); |
| 796 | pr_debug("Receiving skb proto 0x%04x len %i type %i\n", |
| 797 | ntohs(skb->protocol), skb->len, skb->pkt_type); |
| 798 | |
Eric Dumazet | 0fbd050 | 2015-07-31 18:25:17 +0200 | [diff] [blame] | 799 | napi_gro_receive(&rq->napi, skb); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 800 | return ret; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 801 | |
| 802 | frame_err: |
| 803 | dev->stats.rx_frame_errors++; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 804 | dev_kfree_skb(skb); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 805 | return 0; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 806 | } |
| 807 | |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 808 | static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq, |
| 809 | gfp_t gfp) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 810 | { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 811 | struct page_frag *alloc_frag = &rq->alloc_frag; |
| 812 | char *buf; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 813 | unsigned int xdp_headroom = virtnet_get_headroom(vi); |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 814 | int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 815 | int err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 816 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 817 | len = SKB_DATA_ALIGN(len) + |
| 818 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 819 | if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp))) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 820 | return -ENOMEM; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 821 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 822 | buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; |
| 823 | get_page(alloc_frag->page); |
| 824 | alloc_frag->offset += len; |
| 825 | sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom, |
| 826 | vi->hdr_len + GOOD_PACKET_LEN); |
| 827 | err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, buf, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 828 | if (err < 0) |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 829 | put_page(virt_to_head_page(buf)); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 830 | |
| 831 | return err; |
| 832 | } |
| 833 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 834 | static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq, |
| 835 | gfp_t gfp) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 836 | { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 837 | struct page *first, *list = NULL; |
| 838 | char *p; |
| 839 | int i, err, offset; |
| 840 | |
Rusty Russell | a583544 | 2014-09-11 10:17:36 +0930 | [diff] [blame] | 841 | sg_init_table(rq->sg, MAX_SKB_FRAGS + 2); |
| 842 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 843 | /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 844 | for (i = MAX_SKB_FRAGS + 1; i > 1; --i) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 845 | first = get_a_page(rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 846 | if (!first) { |
| 847 | if (list) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 848 | give_pages(rq, list); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 849 | return -ENOMEM; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 850 | } |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 851 | sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 852 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 853 | /* chain new page in list head to match sg */ |
| 854 | first->private = (unsigned long)list; |
| 855 | list = first; |
| 856 | } |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 857 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 858 | first = get_a_page(rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 859 | if (!first) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 860 | give_pages(rq, list); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 861 | return -ENOMEM; |
| 862 | } |
| 863 | p = page_address(first); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 864 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 865 | /* rq->sg[0], rq->sg[1] share the same page */ |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 866 | /* a separated rq->sg[0] for header - required in case !any_header_sg */ |
| 867 | sg_set_buf(&rq->sg[0], p, vi->hdr_len); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 868 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 869 | /* rq->sg[1] for data packet, from offset */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 870 | offset = sizeof(struct padded_vnet_hdr); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 871 | sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 872 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 873 | /* chain first in list head */ |
| 874 | first->private = (unsigned long)list; |
Rusty Russell | 9dc7b9e | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 875 | err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2, |
| 876 | first, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 877 | if (err < 0) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 878 | give_pages(rq, first); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 879 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 880 | return err; |
| 881 | } |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 882 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 883 | static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 884 | { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 885 | const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 886 | unsigned int len; |
| 887 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 888 | len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len), |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 889 | GOOD_PACKET_LEN, PAGE_SIZE - hdr_len); |
| 890 | return ALIGN(len, MERGEABLE_BUFFER_ALIGN); |
| 891 | } |
| 892 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 893 | static int add_recvbuf_mergeable(struct virtnet_info *vi, |
| 894 | struct receive_queue *rq, gfp_t gfp) |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 895 | { |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 896 | struct page_frag *alloc_frag = &rq->alloc_frag; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 897 | unsigned int headroom = virtnet_get_headroom(vi); |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 898 | char *buf; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 899 | unsigned long ctx; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 900 | int err; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 901 | unsigned int len, hole; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 902 | |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 903 | len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 904 | if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp))) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 905 | return -ENOMEM; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 906 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 907 | buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 908 | buf += headroom; /* advance address leaving hole at front of pkt */ |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 909 | ctx = mergeable_buf_to_ctx(buf, len); |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 910 | get_page(alloc_frag->page); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 911 | alloc_frag->offset += len + headroom; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 912 | hole = alloc_frag->size - alloc_frag->offset; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 913 | if (hole < len + headroom) { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 914 | /* To avoid internal fragmentation, if there is very likely not |
| 915 | * enough space for another buffer, add the remaining space to |
| 916 | * the current buffer. This extra space is not included in |
| 917 | * the truesize stored in ctx. |
| 918 | */ |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 919 | len += hole; |
| 920 | alloc_frag->offset += hole; |
| 921 | } |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 922 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 923 | sg_init_one(rq->sg, buf, len); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 924 | err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 925 | if (err < 0) |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 926 | put_page(virt_to_head_page(buf)); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 927 | |
| 928 | return err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 929 | } |
| 930 | |
Rusty Russell | b2baed6 | 2011-12-29 00:42:38 +0000 | [diff] [blame] | 931 | /* |
| 932 | * Returns false if we couldn't fill entirely (OOM). |
| 933 | * |
| 934 | * Normally run in the receive path, but can also be run from ndo_open |
| 935 | * before we're receiving packets, or from refill_work which is |
| 936 | * careful to disable receiving (using napi_disable). |
| 937 | */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 938 | static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq, |
| 939 | gfp_t gfp) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 940 | { |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 941 | int err; |
Michael S. Tsirkin | 1788f495 | 2010-07-02 16:32:55 +0000 | [diff] [blame] | 942 | bool oom; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 943 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 944 | gfp |= __GFP_COLD; |
Amit Shah | 0aea51c | 2009-08-26 14:58:28 +0530 | [diff] [blame] | 945 | do { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 946 | if (vi->mergeable_rx_bufs) |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 947 | err = add_recvbuf_mergeable(vi, rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 948 | else if (vi->big_packets) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 949 | err = add_recvbuf_big(vi, rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 950 | else |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 951 | err = add_recvbuf_small(vi, rq, gfp); |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 952 | |
Michael S. Tsirkin | 1788f495 | 2010-07-02 16:32:55 +0000 | [diff] [blame] | 953 | oom = err == -ENOMEM; |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 954 | if (err) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 955 | break; |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 956 | } while (rq->vq->num_free); |
Jason Wang | 681daee2 | 2014-03-26 13:03:00 +0800 | [diff] [blame] | 957 | virtqueue_kick(rq->vq); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 958 | return !oom; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 959 | } |
| 960 | |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 961 | static void skb_recv_done(struct virtqueue *rvq) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 962 | { |
| 963 | struct virtnet_info *vi = rvq->vdev->priv; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 964 | struct receive_queue *rq = &vi->rq[vq2rxq(rvq)]; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 965 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 966 | virtqueue_napi_schedule(&rq->napi, rvq); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 967 | } |
| 968 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 969 | static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi) |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 970 | { |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 971 | napi_enable(napi); |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 972 | |
| 973 | /* If all buffers were filled by other side before we napi_enabled, we |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 974 | * won't get another interrupt, so process any outstanding packets now. |
| 975 | * Call local_bh_enable after to trigger softIRQ processing. |
| 976 | */ |
| 977 | local_bh_disable(); |
| 978 | virtqueue_napi_schedule(napi, vq); |
| 979 | local_bh_enable(); |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 980 | } |
| 981 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 982 | static void virtnet_napi_tx_enable(struct virtnet_info *vi, |
| 983 | struct virtqueue *vq, |
| 984 | struct napi_struct *napi) |
| 985 | { |
| 986 | if (!napi->weight) |
| 987 | return; |
| 988 | |
| 989 | /* Tx napi touches cachelines on the cpu handling tx interrupts. Only |
| 990 | * enable the feature if this is likely affine with the transmit path. |
| 991 | */ |
| 992 | if (!vi->affinity_hint_set) { |
| 993 | napi->weight = 0; |
| 994 | return; |
| 995 | } |
| 996 | |
| 997 | return virtnet_napi_enable(vq, napi); |
| 998 | } |
| 999 | |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1000 | static void refill_work(struct work_struct *work) |
| 1001 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1002 | struct virtnet_info *vi = |
| 1003 | container_of(work, struct virtnet_info, refill.work); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1004 | bool still_empty; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1005 | int i; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1006 | |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1007 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1008 | struct receive_queue *rq = &vi->rq[i]; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1009 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1010 | napi_disable(&rq->napi); |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1011 | still_empty = !try_fill_recv(vi, rq, GFP_KERNEL); |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1012 | virtnet_napi_enable(rq->vq, &rq->napi); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1013 | |
| 1014 | /* In theory, this can happen: if we don't get any buffers in |
| 1015 | * we will *never* try to fill again. |
| 1016 | */ |
| 1017 | if (still_empty) |
| 1018 | schedule_delayed_work(&vi->refill, HZ/2); |
| 1019 | } |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1022 | static int virtnet_receive(struct receive_queue *rq, int budget) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1023 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1024 | struct virtnet_info *vi = rq->vq->vdev->priv; |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1025 | unsigned int len, received = 0, bytes = 0; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1026 | void *buf; |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1027 | struct virtnet_stats *stats = this_cpu_ptr(vi->stats); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1028 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1029 | while (received < budget && |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1030 | (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) { |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1031 | bytes += receive_buf(vi, rq, buf, len); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1032 | received++; |
| 1033 | } |
| 1034 | |
Jason Wang | be121f4 | 2014-01-16 14:45:24 +0800 | [diff] [blame] | 1035 | if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) { |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1036 | if (!try_fill_recv(vi, rq, GFP_ATOMIC)) |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 1037 | schedule_delayed_work(&vi->refill, 0); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1038 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1039 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1040 | u64_stats_update_begin(&stats->rx_syncp); |
| 1041 | stats->rx_bytes += bytes; |
| 1042 | stats->rx_packets += received; |
| 1043 | u64_stats_update_end(&stats->rx_syncp); |
| 1044 | |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1045 | return received; |
| 1046 | } |
| 1047 | |
| 1048 | static int virtnet_poll(struct napi_struct *napi, int budget) |
| 1049 | { |
| 1050 | struct receive_queue *rq = |
| 1051 | container_of(napi, struct receive_queue, napi); |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1052 | unsigned int received; |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1053 | |
Li RongQing | faadb05 | 2015-03-26 15:39:45 +0800 | [diff] [blame] | 1054 | received = virtnet_receive(rq, budget); |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1055 | |
Rusty Russell | 8329d98 | 2007-11-19 11:20:43 -0500 | [diff] [blame] | 1056 | /* Out of packets? */ |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1057 | if (received < budget) |
| 1058 | virtqueue_napi_complete(napi, rq->vq, received); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1059 | |
| 1060 | return received; |
| 1061 | } |
| 1062 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1063 | static int virtnet_open(struct net_device *dev) |
| 1064 | { |
| 1065 | struct virtnet_info *vi = netdev_priv(dev); |
| 1066 | int i; |
| 1067 | |
Jason Wang | e416662 | 2013-05-21 20:03:58 +0000 | [diff] [blame] | 1068 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1069 | if (i < vi->curr_queue_pairs) |
| 1070 | /* Make sure we have some buffers: if oom use wq. */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1071 | if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) |
Jason Wang | e416662 | 2013-05-21 20:03:58 +0000 | [diff] [blame] | 1072 | schedule_delayed_work(&vi->refill, 0); |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1073 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1074 | virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | return 0; |
| 1078 | } |
| 1079 | |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1080 | static void free_old_xmit_skbs(struct send_queue *sq) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1081 | { |
| 1082 | struct sk_buff *skb; |
Michael S. Tsirkin | 6ee57bc | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1083 | unsigned int len; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1084 | struct virtnet_info *vi = sq->vq->vdev->priv; |
Eric Dumazet | 58472a7 | 2012-02-13 06:53:41 +0000 | [diff] [blame] | 1085 | struct virtnet_stats *stats = this_cpu_ptr(vi->stats); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1086 | unsigned int packets = 0; |
| 1087 | unsigned int bytes = 0; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1088 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1089 | while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) { |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1090 | pr_debug("Sent skb %p\n", skb); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1091 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1092 | bytes += skb->len; |
| 1093 | packets++; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1094 | |
Eric Dumazet | ed79bab | 2009-10-14 14:36:43 +0000 | [diff] [blame] | 1095 | dev_kfree_skb_any(skb); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1096 | } |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1097 | |
| 1098 | /* Avoid overhead when no packets have been processed |
| 1099 | * happens when called speculatively from start_xmit. |
| 1100 | */ |
| 1101 | if (!packets) |
| 1102 | return; |
| 1103 | |
| 1104 | u64_stats_update_begin(&stats->tx_syncp); |
| 1105 | stats->tx_bytes += bytes; |
| 1106 | stats->tx_packets += packets; |
| 1107 | u64_stats_update_end(&stats->tx_syncp); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1108 | } |
| 1109 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1110 | static int virtnet_poll_tx(struct napi_struct *napi, int budget) |
| 1111 | { |
| 1112 | struct send_queue *sq = container_of(napi, struct send_queue, napi); |
| 1113 | struct virtnet_info *vi = sq->vq->vdev->priv; |
| 1114 | struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq)); |
| 1115 | |
| 1116 | __netif_tx_lock(txq, raw_smp_processor_id()); |
| 1117 | free_old_xmit_skbs(sq); |
| 1118 | __netif_tx_unlock(txq); |
| 1119 | |
| 1120 | virtqueue_napi_complete(napi, sq->vq, 0); |
| 1121 | |
| 1122 | if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) |
| 1123 | netif_tx_wake_queue(txq); |
| 1124 | |
| 1125 | return 0; |
| 1126 | } |
| 1127 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1128 | static int xmit_skb(struct send_queue *sq, struct sk_buff *skb) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1129 | { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1130 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1131 | const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1132 | struct virtnet_info *vi = sq->vq->vdev->priv; |
Michael S. Tsirkin | 7bedc7d | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1133 | unsigned num_sg; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1134 | unsigned hdr_len = vi->hdr_len; |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1135 | bool can_push; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1136 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1137 | pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1138 | |
| 1139 | can_push = vi->any_header_sg && |
| 1140 | !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) && |
| 1141 | !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len; |
| 1142 | /* Even if we can, don't push here yet as this would skew |
| 1143 | * csum_start offset below. */ |
| 1144 | if (can_push) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1145 | hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1146 | else |
| 1147 | hdr = skb_vnet_hdr(skb); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1148 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 1149 | if (virtio_net_hdr_from_skb(skb, &hdr->hdr, |
Jason Wang | 6391a44 | 2017-01-20 14:32:42 +0800 | [diff] [blame] | 1150 | virtio_is_little_endian(vi->vdev), false)) |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 1151 | BUG(); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1152 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1153 | if (vi->mergeable_rx_bufs) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1154 | hdr->num_buffers = 0; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1155 | |
Jason Wang | 547c890 | 2015-08-27 14:53:06 +0800 | [diff] [blame] | 1156 | sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2)); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1157 | if (can_push) { |
| 1158 | __skb_push(skb, hdr_len); |
| 1159 | num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len); |
| 1160 | /* Pull header back to avoid skew in tx bytes calculations. */ |
| 1161 | __skb_pull(skb, hdr_len); |
| 1162 | } else { |
| 1163 | sg_set_buf(sq->sg, hdr, hdr_len); |
| 1164 | num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1; |
| 1165 | } |
Rusty Russell | 9dc7b9e | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1166 | return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC); |
Rusty Russell | 11a3a15 | 2008-05-26 17:48:13 +1000 | [diff] [blame] | 1167 | } |
| 1168 | |
Stephen Hemminger | 424efe9 | 2009-08-31 19:50:51 +0000 | [diff] [blame] | 1169 | static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1170 | { |
| 1171 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1172 | int qnum = skb_get_queue_mapping(skb); |
| 1173 | struct send_queue *sq = &vi->sq[qnum]; |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1174 | int err; |
Michael S. Tsirkin | 4b7fd2e6 | 2014-10-15 16:23:28 +0300 | [diff] [blame] | 1175 | struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); |
| 1176 | bool kick = !skb->xmit_more; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1177 | bool use_napi = sq->napi.weight; |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1178 | |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1179 | /* Free up any pending old buffers before queueing new ones. */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1180 | free_old_xmit_skbs(sq); |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1181 | |
Jacob Keller | 074c358 | 2014-06-25 02:37:13 +0000 | [diff] [blame] | 1182 | /* timestamp packet in software */ |
| 1183 | skb_tx_timestamp(skb); |
| 1184 | |
Michael S. Tsirkin | 03f191b | 2009-10-28 04:03:38 -0700 | [diff] [blame] | 1185 | /* Try to transmit */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1186 | err = xmit_skb(sq, skb); |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1187 | |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1188 | /* This should not happen! */ |
Jason Wang | 681daee2 | 2014-03-26 13:03:00 +0800 | [diff] [blame] | 1189 | if (unlikely(err)) { |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1190 | dev->stats.tx_fifo_errors++; |
| 1191 | if (net_ratelimit()) |
| 1192 | dev_warn(&dev->dev, |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1193 | "Unexpected TXQ (%d) queue failure: %d\n", qnum, err); |
Rusty Russell | 58eba97d | 2010-07-02 16:34:01 +0000 | [diff] [blame] | 1194 | dev->stats.tx_dropped++; |
Eric W. Biederman | 85e9452 | 2014-03-15 18:43:33 -0700 | [diff] [blame] | 1195 | dev_kfree_skb_any(skb); |
Rusty Russell | 58eba97d | 2010-07-02 16:34:01 +0000 | [diff] [blame] | 1196 | return NETDEV_TX_OK; |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1197 | } |
Michael S. Tsirkin | 03f191b | 2009-10-28 04:03:38 -0700 | [diff] [blame] | 1198 | |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1199 | /* Don't wait up for transmitted skbs to be freed. */ |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1200 | if (!use_napi) { |
| 1201 | skb_orphan(skb); |
| 1202 | nf_reset(skb); |
| 1203 | } |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1204 | |
Michael S. Tsirkin | 60302ff | 2015-04-02 13:05:47 +0200 | [diff] [blame] | 1205 | /* If running out of space, stop queue to avoid getting packets that we |
| 1206 | * are then unable to transmit. |
| 1207 | * An alternative would be to force queuing layer to requeue the skb by |
| 1208 | * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be |
| 1209 | * returned in a normal path of operation: it means that driver is not |
| 1210 | * maintaining the TX queue stop/start state properly, and causes |
| 1211 | * the stack to do a non-trivial amount of useless work. |
| 1212 | * Since most packets only take 1 or 2 ring slots, stopping the queue |
| 1213 | * early means 16 slots are typically wasted. |
stephen hemminger | d631b94 | 2015-03-24 16:22:07 -0700 | [diff] [blame] | 1214 | */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1215 | if (sq->vq->num_free < 2+MAX_SKB_FRAGS) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1216 | netif_stop_subqueue(dev, qnum); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1217 | if (!use_napi && |
| 1218 | unlikely(!virtqueue_enable_cb_delayed(sq->vq))) { |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1219 | /* More just got used, free them then recheck. */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1220 | free_old_xmit_skbs(sq); |
| 1221 | if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1222 | netif_start_subqueue(dev, qnum); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1223 | virtqueue_disable_cb(sq->vq); |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1224 | } |
| 1225 | } |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1226 | } |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1227 | |
Michael S. Tsirkin | 4b7fd2e6 | 2014-10-15 16:23:28 +0300 | [diff] [blame] | 1228 | if (kick || netif_xmit_stopped(txq)) |
David S. Miller | 0b725a2 | 2014-08-25 15:51:53 -0700 | [diff] [blame] | 1229 | virtqueue_kick(sq->vq); |
| 1230 | |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1231 | return NETDEV_TX_OK; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1232 | } |
| 1233 | |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1234 | /* |
| 1235 | * Send command via the control virtqueue and check status. Commands |
| 1236 | * supported by the hypervisor, as indicated by feature bits, should |
stephen hemminger | 788a8b6 | 2013-12-09 16:18:45 -0800 | [diff] [blame] | 1237 | * never fail unless improperly formatted. |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1238 | */ |
| 1239 | static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1240 | struct scatterlist *out) |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1241 | { |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1242 | struct scatterlist *sgs[4], hdr, stat; |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1243 | unsigned out_num = 0, tmp; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1244 | |
| 1245 | /* Caller should know better */ |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1246 | BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)); |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1247 | |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1248 | vi->ctrl_status = ~0; |
| 1249 | vi->ctrl_hdr.class = class; |
| 1250 | vi->ctrl_hdr.cmd = cmd; |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1251 | /* Add header */ |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1252 | sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr)); |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1253 | sgs[out_num++] = &hdr; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1254 | |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1255 | if (out) |
| 1256 | sgs[out_num++] = out; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1257 | |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1258 | /* Add return status. */ |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1259 | sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status)); |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1260 | sgs[out_num] = &stat; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1261 | |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1262 | BUG_ON(out_num + 1 > ARRAY_SIZE(sgs)); |
Rusty Russell | a7c5814 | 2014-03-13 11:23:39 +1030 | [diff] [blame] | 1263 | virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC); |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1264 | |
Heinz Graalfs | 6797590 | 2013-10-29 09:40:02 +1030 | [diff] [blame] | 1265 | if (unlikely(!virtqueue_kick(vi->cvq))) |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1266 | return vi->ctrl_status == VIRTIO_NET_OK; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1267 | |
| 1268 | /* Spin for a response, the kick causes an ioport write, trapping |
| 1269 | * into the hypervisor, so the request should be handled immediately. |
| 1270 | */ |
Heinz Graalfs | 047b9b9 | 2013-10-29 09:40:47 +1030 | [diff] [blame] | 1271 | while (!virtqueue_get_buf(vi->cvq, &tmp) && |
| 1272 | !virtqueue_is_broken(vi->cvq)) |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1273 | cpu_relax(); |
| 1274 | |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1275 | return vi->ctrl_status == VIRTIO_NET_OK; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1276 | } |
| 1277 | |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1278 | static int virtnet_set_mac_address(struct net_device *dev, void *p) |
| 1279 | { |
| 1280 | struct virtnet_info *vi = netdev_priv(dev); |
| 1281 | struct virtio_device *vdev = vi->vdev; |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 1282 | int ret; |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1283 | struct sockaddr *addr; |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1284 | struct scatterlist sg; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1285 | |
Shyam Saini | 801822d | 2016-12-24 00:44:58 +0530 | [diff] [blame] | 1286 | addr = kmemdup(p, sizeof(*addr), GFP_KERNEL); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1287 | if (!addr) |
| 1288 | return -ENOMEM; |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1289 | |
| 1290 | ret = eth_prepare_mac_addr_change(dev, addr); |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 1291 | if (ret) |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1292 | goto out; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1293 | |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1294 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { |
| 1295 | sg_init_one(&sg, addr->sa_data, dev->addr_len); |
| 1296 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1297 | VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1298 | dev_warn(&vdev->dev, |
| 1299 | "Failed to set mac address by vq command.\n"); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1300 | ret = -EINVAL; |
| 1301 | goto out; |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1302 | } |
Michael S. Tsirkin | 7e93a02 | 2014-11-26 15:58:28 +0200 | [diff] [blame] | 1303 | } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && |
| 1304 | !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) { |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 1305 | unsigned int i; |
| 1306 | |
| 1307 | /* Naturally, this has an atomicity problem. */ |
| 1308 | for (i = 0; i < dev->addr_len; i++) |
| 1309 | virtio_cwrite8(vdev, |
| 1310 | offsetof(struct virtio_net_config, mac) + |
| 1311 | i, addr->sa_data[i]); |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1312 | } |
| 1313 | |
| 1314 | eth_commit_mac_addr_change(dev, p); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1315 | ret = 0; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1316 | |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1317 | out: |
| 1318 | kfree(addr); |
| 1319 | return ret; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1320 | } |
| 1321 | |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 1322 | static void virtnet_stats(struct net_device *dev, |
| 1323 | struct rtnl_link_stats64 *tot) |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1324 | { |
| 1325 | struct virtnet_info *vi = netdev_priv(dev); |
| 1326 | int cpu; |
| 1327 | unsigned int start; |
| 1328 | |
| 1329 | for_each_possible_cpu(cpu) { |
Eric Dumazet | 58472a7 | 2012-02-13 06:53:41 +0000 | [diff] [blame] | 1330 | struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1331 | u64 tpackets, tbytes, rpackets, rbytes; |
| 1332 | |
| 1333 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1334 | start = u64_stats_fetch_begin_irq(&stats->tx_syncp); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1335 | tpackets = stats->tx_packets; |
| 1336 | tbytes = stats->tx_bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1337 | } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start)); |
Eric Dumazet | 83a2705 | 2012-06-05 22:35:24 +0000 | [diff] [blame] | 1338 | |
| 1339 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1340 | start = u64_stats_fetch_begin_irq(&stats->rx_syncp); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1341 | rpackets = stats->rx_packets; |
| 1342 | rbytes = stats->rx_bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1343 | } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start)); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1344 | |
| 1345 | tot->rx_packets += rpackets; |
| 1346 | tot->tx_packets += tpackets; |
| 1347 | tot->rx_bytes += rbytes; |
| 1348 | tot->tx_bytes += tbytes; |
| 1349 | } |
| 1350 | |
| 1351 | tot->tx_dropped = dev->stats.tx_dropped; |
Rick Jones | 021ac8d | 2011-11-21 09:28:17 +0000 | [diff] [blame] | 1352 | tot->tx_fifo_errors = dev->stats.tx_fifo_errors; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1353 | tot->rx_dropped = dev->stats.rx_dropped; |
| 1354 | tot->rx_length_errors = dev->stats.rx_length_errors; |
| 1355 | tot->rx_frame_errors = dev->stats.rx_frame_errors; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1358 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1359 | static void virtnet_netpoll(struct net_device *dev) |
| 1360 | { |
| 1361 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1362 | int i; |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1363 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1364 | for (i = 0; i < vi->curr_queue_pairs; i++) |
| 1365 | napi_schedule(&vi->rq[i].napi); |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1366 | } |
| 1367 | #endif |
| 1368 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1369 | static void virtnet_ack_link_announce(struct virtnet_info *vi) |
| 1370 | { |
| 1371 | rtnl_lock(); |
| 1372 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1373 | VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL)) |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1374 | dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); |
| 1375 | rtnl_unlock(); |
| 1376 | } |
| 1377 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1378 | static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1379 | { |
| 1380 | struct scatterlist sg; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1381 | struct net_device *dev = vi->dev; |
| 1382 | |
| 1383 | if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) |
| 1384 | return 0; |
| 1385 | |
Andy Lutomirski | a725ee3 | 2016-07-18 15:34:49 -0700 | [diff] [blame] | 1386 | vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs); |
| 1387 | sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq)); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1388 | |
| 1389 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1390 | VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1391 | dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", |
| 1392 | queue_pairs); |
| 1393 | return -EINVAL; |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1394 | } else { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1395 | vi->curr_queue_pairs = queue_pairs; |
Jason Wang | 35ed159 | 2013-10-15 11:18:59 +0800 | [diff] [blame] | 1396 | /* virtnet_open() will refill when device is going to up. */ |
| 1397 | if (dev->flags & IFF_UP) |
| 1398 | schedule_delayed_work(&vi->refill, 0); |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1399 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1400 | |
| 1401 | return 0; |
| 1402 | } |
| 1403 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1404 | static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) |
| 1405 | { |
| 1406 | int err; |
| 1407 | |
| 1408 | rtnl_lock(); |
| 1409 | err = _virtnet_set_queues(vi, queue_pairs); |
| 1410 | rtnl_unlock(); |
| 1411 | return err; |
| 1412 | } |
| 1413 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1414 | static int virtnet_close(struct net_device *dev) |
| 1415 | { |
| 1416 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1417 | int i; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1418 | |
Rusty Russell | b2baed6 | 2011-12-29 00:42:38 +0000 | [diff] [blame] | 1419 | /* Make sure refill_work doesn't re-enable napi! */ |
| 1420 | cancel_delayed_work_sync(&vi->refill); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1421 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1422 | for (i = 0; i < vi->max_queue_pairs; i++) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1423 | napi_disable(&vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1424 | napi_disable(&vi->sq[i].napi); |
| 1425 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1426 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1427 | return 0; |
| 1428 | } |
| 1429 | |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1430 | static void virtnet_set_rx_mode(struct net_device *dev) |
| 1431 | { |
| 1432 | struct virtnet_info *vi = netdev_priv(dev); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1433 | struct scatterlist sg[2]; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1434 | struct virtio_net_ctrl_mac *mac_data; |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1435 | struct netdev_hw_addr *ha; |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1436 | int uc_count; |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1437 | int mc_count; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1438 | void *buf; |
| 1439 | int i; |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1440 | |
stephen hemminger | 788a8b6 | 2013-12-09 16:18:45 -0800 | [diff] [blame] | 1441 | /* We can't dynamically set ndo_set_rx_mode, so return gracefully */ |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1442 | if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) |
| 1443 | return; |
| 1444 | |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1445 | vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0); |
| 1446 | vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1447 | |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1448 | sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc)); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1449 | |
| 1450 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1451 | VIRTIO_NET_CTRL_RX_PROMISC, sg)) |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1452 | dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1453 | vi->ctrl_promisc ? "en" : "dis"); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1454 | |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1455 | sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti)); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1456 | |
| 1457 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1458 | VIRTIO_NET_CTRL_RX_ALLMULTI, sg)) |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1459 | dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 1460 | vi->ctrl_allmulti ? "en" : "dis"); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1461 | |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1462 | uc_count = netdev_uc_count(dev); |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1463 | mc_count = netdev_mc_count(dev); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1464 | /* MAC filter - use one buffer for both lists */ |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1465 | buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + |
| 1466 | (2 * sizeof(mac_data->entries)), GFP_ATOMIC); |
| 1467 | mac_data = buf; |
Joe Perches | e68ed8f | 2013-02-03 17:28:15 +0000 | [diff] [blame] | 1468 | if (!buf) |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1469 | return; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1470 | |
Alex Williamson | 23e258e | 2009-05-01 17:27:56 +0000 | [diff] [blame] | 1471 | sg_init_table(sg, 2); |
| 1472 | |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1473 | /* Store the unicast list and count in the front of the buffer */ |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 1474 | mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count); |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1475 | i = 0; |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1476 | netdev_for_each_uc_addr(ha, dev) |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1477 | memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1478 | |
| 1479 | sg_set_buf(&sg[0], mac_data, |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1480 | sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1481 | |
| 1482 | /* multicast list and count fill the end */ |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1483 | mac_data = (void *)&mac_data->macs[uc_count][0]; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1484 | |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 1485 | mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count); |
Jiri Pirko | 567ec87 | 2010-02-23 23:17:07 +0000 | [diff] [blame] | 1486 | i = 0; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1487 | netdev_for_each_mc_addr(ha, dev) |
| 1488 | memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1489 | |
| 1490 | sg_set_buf(&sg[1], mac_data, |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1491 | sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1492 | |
| 1493 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1494 | VIRTIO_NET_CTRL_MAC_TABLE_SET, sg)) |
Thomas Huth | 99e872a | 2013-11-29 10:02:19 +0100 | [diff] [blame] | 1495 | dev_warn(&dev->dev, "Failed to set MAC filter table.\n"); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1496 | |
| 1497 | kfree(buf); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1500 | static int virtnet_vlan_rx_add_vid(struct net_device *dev, |
| 1501 | __be16 proto, u16 vid) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1502 | { |
| 1503 | struct virtnet_info *vi = netdev_priv(dev); |
| 1504 | struct scatterlist sg; |
| 1505 | |
Andy Lutomirski | a725ee3 | 2016-07-18 15:34:49 -0700 | [diff] [blame] | 1506 | vi->ctrl_vid = vid; |
| 1507 | sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid)); |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1508 | |
| 1509 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1510 | VIRTIO_NET_CTRL_VLAN_ADD, &sg)) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1511 | dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1512 | return 0; |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1513 | } |
| 1514 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1515 | static int virtnet_vlan_rx_kill_vid(struct net_device *dev, |
| 1516 | __be16 proto, u16 vid) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1517 | { |
| 1518 | struct virtnet_info *vi = netdev_priv(dev); |
| 1519 | struct scatterlist sg; |
| 1520 | |
Andy Lutomirski | a725ee3 | 2016-07-18 15:34:49 -0700 | [diff] [blame] | 1521 | vi->ctrl_vid = vid; |
| 1522 | sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid)); |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1523 | |
| 1524 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1525 | VIRTIO_NET_CTRL_VLAN_DEL, &sg)) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1526 | dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1527 | return 0; |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1528 | } |
| 1529 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1530 | static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1531 | { |
| 1532 | int i; |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1533 | |
| 1534 | if (vi->affinity_hint_set) { |
| 1535 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1536 | virtqueue_set_affinity(vi->rq[i].vq, -1); |
| 1537 | virtqueue_set_affinity(vi->sq[i].vq, -1); |
| 1538 | } |
| 1539 | |
| 1540 | vi->affinity_hint_set = false; |
| 1541 | } |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | static void virtnet_set_affinity(struct virtnet_info *vi) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1545 | { |
| 1546 | int i; |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1547 | int cpu; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1548 | |
| 1549 | /* In multiqueue mode, when the number of cpu is equal to the number of |
| 1550 | * queue pairs, we let the queue pairs to be private to one cpu by |
| 1551 | * setting the affinity hint to eliminate the contention. |
| 1552 | */ |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1553 | if (vi->curr_queue_pairs == 1 || |
| 1554 | vi->max_queue_pairs != num_online_cpus()) { |
| 1555 | virtnet_clean_affinity(vi, -1); |
| 1556 | return; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1557 | } |
| 1558 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1559 | i = 0; |
| 1560 | for_each_online_cpu(cpu) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1561 | virtqueue_set_affinity(vi->rq[i].vq, cpu); |
| 1562 | virtqueue_set_affinity(vi->sq[i].vq, cpu); |
Jason Wang | 9bb8ca8 | 2013-11-05 18:19:45 +0800 | [diff] [blame] | 1563 | netif_set_xps_queue(vi->dev, cpumask_of(cpu), i); |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1564 | i++; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1567 | vi->affinity_hint_set = true; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1568 | } |
| 1569 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1570 | static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node) |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 1571 | { |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1572 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1573 | node); |
| 1574 | virtnet_set_affinity(vi); |
| 1575 | return 0; |
| 1576 | } |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 1577 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1578 | static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node) |
| 1579 | { |
| 1580 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1581 | node_dead); |
| 1582 | virtnet_set_affinity(vi); |
| 1583 | return 0; |
| 1584 | } |
Jason Wang | 3ab098d | 2013-10-15 11:18:58 +0800 | [diff] [blame] | 1585 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1586 | static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node) |
| 1587 | { |
| 1588 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1589 | node); |
| 1590 | |
| 1591 | virtnet_clean_affinity(vi, cpu); |
| 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | static enum cpuhp_state virtionet_online; |
| 1596 | |
| 1597 | static int virtnet_cpu_notif_add(struct virtnet_info *vi) |
| 1598 | { |
| 1599 | int ret; |
| 1600 | |
| 1601 | ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node); |
| 1602 | if (ret) |
| 1603 | return ret; |
| 1604 | ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD, |
| 1605 | &vi->node_dead); |
| 1606 | if (!ret) |
| 1607 | return ret; |
| 1608 | cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); |
| 1609 | return ret; |
| 1610 | } |
| 1611 | |
| 1612 | static void virtnet_cpu_notif_remove(struct virtnet_info *vi) |
| 1613 | { |
| 1614 | cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); |
| 1615 | cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD, |
| 1616 | &vi->node_dead); |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 1617 | } |
| 1618 | |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1619 | static void virtnet_get_ringparam(struct net_device *dev, |
| 1620 | struct ethtool_ringparam *ring) |
| 1621 | { |
| 1622 | struct virtnet_info *vi = netdev_priv(dev); |
| 1623 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1624 | ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq); |
| 1625 | ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq); |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1626 | ring->rx_pending = ring->rx_max_pending; |
| 1627 | ring->tx_pending = ring->tx_max_pending; |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 1630 | |
| 1631 | static void virtnet_get_drvinfo(struct net_device *dev, |
| 1632 | struct ethtool_drvinfo *info) |
| 1633 | { |
| 1634 | struct virtnet_info *vi = netdev_priv(dev); |
| 1635 | struct virtio_device *vdev = vi->vdev; |
| 1636 | |
| 1637 | strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); |
| 1638 | strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); |
| 1639 | strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); |
| 1640 | |
| 1641 | } |
| 1642 | |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1643 | /* TODO: Eliminate OOO packets during switching */ |
| 1644 | static int virtnet_set_channels(struct net_device *dev, |
| 1645 | struct ethtool_channels *channels) |
| 1646 | { |
| 1647 | struct virtnet_info *vi = netdev_priv(dev); |
| 1648 | u16 queue_pairs = channels->combined_count; |
| 1649 | int err; |
| 1650 | |
| 1651 | /* We don't support separate rx/tx channels. |
| 1652 | * We don't allow setting 'other' channels. |
| 1653 | */ |
| 1654 | if (channels->rx_count || channels->tx_count || channels->other_count) |
| 1655 | return -EINVAL; |
| 1656 | |
Amos Kong | c18e9cd | 2014-04-18 13:45:41 +0800 | [diff] [blame] | 1657 | if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0) |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1658 | return -EINVAL; |
| 1659 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1660 | /* For now we don't support modifying channels while XDP is loaded |
| 1661 | * also when XDP is loaded all RX queues have XDP programs so we only |
| 1662 | * need to check a single RX queue. |
| 1663 | */ |
| 1664 | if (vi->rq[0].xdp_prog) |
| 1665 | return -EINVAL; |
| 1666 | |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1667 | get_online_cpus(); |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1668 | err = _virtnet_set_queues(vi, queue_pairs); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1669 | if (!err) { |
| 1670 | netif_set_real_num_tx_queues(dev, queue_pairs); |
| 1671 | netif_set_real_num_rx_queues(dev, queue_pairs); |
| 1672 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1673 | virtnet_set_affinity(vi); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1674 | } |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1675 | put_online_cpus(); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1676 | |
| 1677 | return err; |
| 1678 | } |
| 1679 | |
| 1680 | static void virtnet_get_channels(struct net_device *dev, |
| 1681 | struct ethtool_channels *channels) |
| 1682 | { |
| 1683 | struct virtnet_info *vi = netdev_priv(dev); |
| 1684 | |
| 1685 | channels->combined_count = vi->curr_queue_pairs; |
| 1686 | channels->max_combined = vi->max_queue_pairs; |
| 1687 | channels->max_other = 0; |
| 1688 | channels->rx_count = 0; |
| 1689 | channels->tx_count = 0; |
| 1690 | channels->other_count = 0; |
| 1691 | } |
| 1692 | |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1693 | /* Check if the user is trying to change anything besides speed/duplex */ |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1694 | static bool |
| 1695 | virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1696 | { |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1697 | struct ethtool_link_ksettings diff1 = *cmd; |
| 1698 | struct ethtool_link_ksettings diff2 = {}; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1699 | |
Nikolay Aleksandrov | 0cf3ace | 2016-02-07 21:52:24 +0100 | [diff] [blame] | 1700 | /* cmd is always set so we need to clear it, validate the port type |
| 1701 | * and also without autonegotiation we can ignore advertising |
| 1702 | */ |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1703 | diff1.base.speed = 0; |
| 1704 | diff2.base.port = PORT_OTHER; |
| 1705 | ethtool_link_ksettings_zero_link_mode(&diff1, advertising); |
| 1706 | diff1.base.duplex = 0; |
| 1707 | diff1.base.cmd = 0; |
| 1708 | diff1.base.link_mode_masks_nwords = 0; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1709 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1710 | return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) && |
| 1711 | bitmap_empty(diff1.link_modes.supported, |
| 1712 | __ETHTOOL_LINK_MODE_MASK_NBITS) && |
| 1713 | bitmap_empty(diff1.link_modes.advertising, |
| 1714 | __ETHTOOL_LINK_MODE_MASK_NBITS) && |
| 1715 | bitmap_empty(diff1.link_modes.lp_advertising, |
| 1716 | __ETHTOOL_LINK_MODE_MASK_NBITS); |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1717 | } |
| 1718 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1719 | static int virtnet_set_link_ksettings(struct net_device *dev, |
| 1720 | const struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1721 | { |
| 1722 | struct virtnet_info *vi = netdev_priv(dev); |
| 1723 | u32 speed; |
| 1724 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1725 | speed = cmd->base.speed; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1726 | /* don't allow custom speed and duplex */ |
| 1727 | if (!ethtool_validate_speed(speed) || |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1728 | !ethtool_validate_duplex(cmd->base.duplex) || |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1729 | !virtnet_validate_ethtool_cmd(cmd)) |
| 1730 | return -EINVAL; |
| 1731 | vi->speed = speed; |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1732 | vi->duplex = cmd->base.duplex; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1733 | |
| 1734 | return 0; |
| 1735 | } |
| 1736 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1737 | static int virtnet_get_link_ksettings(struct net_device *dev, |
| 1738 | struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1739 | { |
| 1740 | struct virtnet_info *vi = netdev_priv(dev); |
| 1741 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1742 | cmd->base.speed = vi->speed; |
| 1743 | cmd->base.duplex = vi->duplex; |
| 1744 | cmd->base.port = PORT_OTHER; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 1745 | |
| 1746 | return 0; |
| 1747 | } |
| 1748 | |
| 1749 | static void virtnet_init_settings(struct net_device *dev) |
| 1750 | { |
| 1751 | struct virtnet_info *vi = netdev_priv(dev); |
| 1752 | |
| 1753 | vi->speed = SPEED_UNKNOWN; |
| 1754 | vi->duplex = DUPLEX_UNKNOWN; |
| 1755 | } |
| 1756 | |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 1757 | static const struct ethtool_ops virtnet_ethtool_ops = { |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 1758 | .get_drvinfo = virtnet_get_drvinfo, |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1759 | .get_link = ethtool_op_get_link, |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1760 | .get_ringparam = virtnet_get_ringparam, |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1761 | .set_channels = virtnet_set_channels, |
| 1762 | .get_channels = virtnet_get_channels, |
Jacob Keller | 074c358 | 2014-06-25 02:37:13 +0000 | [diff] [blame] | 1763 | .get_ts_info = ethtool_op_get_ts_info, |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 1764 | .get_link_ksettings = virtnet_get_link_ksettings, |
| 1765 | .set_link_ksettings = virtnet_set_link_ksettings, |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 1766 | }; |
| 1767 | |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 1768 | static void virtnet_freeze_down(struct virtio_device *vdev) |
| 1769 | { |
| 1770 | struct virtnet_info *vi = vdev->priv; |
| 1771 | int i; |
| 1772 | |
| 1773 | /* Make sure no work handler is accessing the device */ |
| 1774 | flush_work(&vi->config_work); |
| 1775 | |
| 1776 | netif_device_detach(vi->dev); |
| 1777 | cancel_delayed_work_sync(&vi->refill); |
| 1778 | |
| 1779 | if (netif_running(vi->dev)) { |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1780 | for (i = 0; i < vi->max_queue_pairs; i++) { |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 1781 | napi_disable(&vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1782 | napi_disable(&vi->sq[i].napi); |
| 1783 | } |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 1784 | } |
| 1785 | } |
| 1786 | |
| 1787 | static int init_vqs(struct virtnet_info *vi); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1788 | static void _remove_vq_common(struct virtnet_info *vi); |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 1789 | |
| 1790 | static int virtnet_restore_up(struct virtio_device *vdev) |
| 1791 | { |
| 1792 | struct virtnet_info *vi = vdev->priv; |
| 1793 | int err, i; |
| 1794 | |
| 1795 | err = init_vqs(vi); |
| 1796 | if (err) |
| 1797 | return err; |
| 1798 | |
| 1799 | virtio_device_ready(vdev); |
| 1800 | |
| 1801 | if (netif_running(vi->dev)) { |
| 1802 | for (i = 0; i < vi->curr_queue_pairs; i++) |
| 1803 | if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) |
| 1804 | schedule_delayed_work(&vi->refill, 0); |
| 1805 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1806 | for (i = 0; i < vi->max_queue_pairs; i++) { |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1807 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 1808 | virtnet_napi_tx_enable(vi, vi->sq[i].vq, |
| 1809 | &vi->sq[i].napi); |
| 1810 | } |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | netif_device_attach(vi->dev); |
| 1814 | return err; |
| 1815 | } |
| 1816 | |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1817 | static int virtnet_reset(struct virtnet_info *vi, int curr_qp, int xdp_qp) |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1818 | { |
| 1819 | struct virtio_device *dev = vi->vdev; |
| 1820 | int ret; |
| 1821 | |
| 1822 | virtio_config_disable(dev); |
| 1823 | dev->failed = dev->config->get_status(dev) & VIRTIO_CONFIG_S_FAILED; |
| 1824 | virtnet_freeze_down(dev); |
| 1825 | _remove_vq_common(vi); |
| 1826 | |
| 1827 | dev->config->reset(dev); |
| 1828 | virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE); |
| 1829 | virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER); |
| 1830 | |
| 1831 | ret = virtio_finalize_features(dev); |
| 1832 | if (ret) |
| 1833 | goto err; |
| 1834 | |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1835 | vi->xdp_queue_pairs = xdp_qp; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1836 | ret = virtnet_restore_up(dev); |
| 1837 | if (ret) |
| 1838 | goto err; |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1839 | ret = _virtnet_set_queues(vi, curr_qp); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1840 | if (ret) |
| 1841 | goto err; |
| 1842 | |
| 1843 | virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK); |
| 1844 | virtio_config_enable(dev); |
| 1845 | return 0; |
| 1846 | err: |
| 1847 | virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED); |
| 1848 | return ret; |
| 1849 | } |
| 1850 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1851 | static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog) |
| 1852 | { |
| 1853 | unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr); |
| 1854 | struct virtnet_info *vi = netdev_priv(dev); |
| 1855 | struct bpf_prog *old_prog; |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1856 | u16 xdp_qp = 0, curr_qp; |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 1857 | int i, err; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1858 | |
| 1859 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || |
Jason Wang | 92502fe | 2016-12-23 22:37:30 +0800 | [diff] [blame] | 1860 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || |
| 1861 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || |
| 1862 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) { |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1863 | netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n"); |
| 1864 | return -EOPNOTSUPP; |
| 1865 | } |
| 1866 | |
| 1867 | if (vi->mergeable_rx_bufs && !vi->any_header_sg) { |
| 1868 | netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n"); |
| 1869 | return -EINVAL; |
| 1870 | } |
| 1871 | |
| 1872 | if (dev->mtu > max_sz) { |
| 1873 | netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz); |
| 1874 | return -EINVAL; |
| 1875 | } |
| 1876 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 1877 | curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs; |
| 1878 | if (prog) |
| 1879 | xdp_qp = nr_cpu_ids; |
| 1880 | |
| 1881 | /* XDP requires extra queues for XDP_TX */ |
| 1882 | if (curr_qp + xdp_qp > vi->max_queue_pairs) { |
| 1883 | netdev_warn(dev, "request %i queues but max is %i\n", |
| 1884 | curr_qp + xdp_qp, vi->max_queue_pairs); |
| 1885 | return -ENOMEM; |
| 1886 | } |
| 1887 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1888 | if (prog) { |
| 1889 | prog = bpf_prog_add(prog, vi->max_queue_pairs - 1); |
| 1890 | if (IS_ERR(prog)) |
| 1891 | return PTR_ERR(prog); |
| 1892 | } |
| 1893 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1894 | /* Changing the headroom in buffers is a disruptive operation because |
| 1895 | * existing buffers must be flushed and reallocated. This will happen |
| 1896 | * when a xdp program is initially added or xdp is disabled by removing |
| 1897 | * the xdp program resulting in number of XDP queues changing. |
| 1898 | */ |
| 1899 | if (vi->xdp_queue_pairs != xdp_qp) { |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1900 | err = virtnet_reset(vi, curr_qp + xdp_qp, xdp_qp); |
| 1901 | if (err) { |
| 1902 | dev_warn(&dev->dev, "XDP reset failure.\n"); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1903 | goto virtio_reset_err; |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 1904 | } |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1905 | } |
| 1906 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 1907 | netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp); |
| 1908 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1909 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1910 | old_prog = rtnl_dereference(vi->rq[i].xdp_prog); |
| 1911 | rcu_assign_pointer(vi->rq[i].xdp_prog, prog); |
| 1912 | if (old_prog) |
| 1913 | bpf_prog_put(old_prog); |
| 1914 | } |
| 1915 | |
| 1916 | return 0; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1917 | |
| 1918 | virtio_reset_err: |
| 1919 | /* On reset error do our best to unwind XDP changes inflight and return |
| 1920 | * error up to user space for resolution. The underlying reset hung on |
| 1921 | * us so not much we can do here. |
| 1922 | */ |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1923 | if (prog) |
| 1924 | bpf_prog_sub(prog, vi->max_queue_pairs - 1); |
| 1925 | return err; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1926 | } |
| 1927 | |
| 1928 | static bool virtnet_xdp_query(struct net_device *dev) |
| 1929 | { |
| 1930 | struct virtnet_info *vi = netdev_priv(dev); |
| 1931 | int i; |
| 1932 | |
| 1933 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1934 | if (vi->rq[i].xdp_prog) |
| 1935 | return true; |
| 1936 | } |
| 1937 | return false; |
| 1938 | } |
| 1939 | |
| 1940 | static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp) |
| 1941 | { |
| 1942 | switch (xdp->command) { |
| 1943 | case XDP_SETUP_PROG: |
| 1944 | return virtnet_xdp_set(dev, xdp->prog); |
| 1945 | case XDP_QUERY_PROG: |
| 1946 | xdp->prog_attached = virtnet_xdp_query(dev); |
| 1947 | return 0; |
| 1948 | default: |
| 1949 | return -EINVAL; |
| 1950 | } |
| 1951 | } |
| 1952 | |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 1953 | static const struct net_device_ops virtnet_netdev = { |
| 1954 | .ndo_open = virtnet_open, |
| 1955 | .ndo_stop = virtnet_close, |
| 1956 | .ndo_start_xmit = start_xmit, |
| 1957 | .ndo_validate_addr = eth_validate_addr, |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1958 | .ndo_set_mac_address = virtnet_set_mac_address, |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1959 | .ndo_set_rx_mode = virtnet_set_rx_mode, |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1960 | .ndo_get_stats64 = virtnet_stats, |
Alex Williamson | 1824a98 | 2009-05-01 17:31:10 +0000 | [diff] [blame] | 1961 | .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, |
| 1962 | .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 1963 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1964 | .ndo_poll_controller = virtnet_netpoll, |
| 1965 | #endif |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1966 | .ndo_xdp = virtnet_xdp, |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 1967 | }; |
| 1968 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1969 | static void virtnet_config_changed_work(struct work_struct *work) |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1970 | { |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1971 | struct virtnet_info *vi = |
| 1972 | container_of(work, struct virtnet_info, config_work); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1973 | u16 v; |
| 1974 | |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 1975 | if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS, |
| 1976 | struct virtio_net_config, status, &v) < 0) |
Michael S. Tsirkin | 507613b | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 1977 | return; |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1978 | |
| 1979 | if (v & VIRTIO_NET_S_ANNOUNCE) { |
Amerigo Wang | ee89bab | 2012-08-09 22:14:56 +0000 | [diff] [blame] | 1980 | netdev_notify_peers(vi->dev); |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1981 | virtnet_ack_link_announce(vi); |
| 1982 | } |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1983 | |
| 1984 | /* Ignore unknown (future) status bits */ |
| 1985 | v &= VIRTIO_NET_S_LINK_UP; |
| 1986 | |
| 1987 | if (vi->status == v) |
Michael S. Tsirkin | 507613b | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 1988 | return; |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1989 | |
| 1990 | vi->status = v; |
| 1991 | |
| 1992 | if (vi->status & VIRTIO_NET_S_LINK_UP) { |
| 1993 | netif_carrier_on(vi->dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1994 | netif_tx_wake_all_queues(vi->dev); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1995 | } else { |
| 1996 | netif_carrier_off(vi->dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1997 | netif_tx_stop_all_queues(vi->dev); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 1998 | } |
| 1999 | } |
| 2000 | |
| 2001 | static void virtnet_config_changed(struct virtio_device *vdev) |
| 2002 | { |
| 2003 | struct virtnet_info *vi = vdev->priv; |
| 2004 | |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 2005 | schedule_work(&vi->config_work); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2006 | } |
| 2007 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2008 | static void virtnet_free_queues(struct virtnet_info *vi) |
| 2009 | { |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2010 | int i; |
| 2011 | |
Jason Wang | ab3971b | 2015-03-12 13:57:44 +0800 | [diff] [blame] | 2012 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2013 | napi_hash_del(&vi->rq[i].napi); |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2014 | netif_napi_del(&vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 2015 | netif_napi_del(&vi->sq[i].napi); |
Jason Wang | ab3971b | 2015-03-12 13:57:44 +0800 | [diff] [blame] | 2016 | } |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2017 | |
Eric Dumazet | 963abe5 | 2016-11-15 22:24:12 -0800 | [diff] [blame] | 2018 | /* We called napi_hash_del() before netif_napi_del(), |
| 2019 | * we need to respect an RCU grace period before freeing vi->rq |
| 2020 | */ |
| 2021 | synchronize_net(); |
| 2022 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2023 | kfree(vi->rq); |
| 2024 | kfree(vi->sq); |
| 2025 | } |
| 2026 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 2027 | static void _free_receive_bufs(struct virtnet_info *vi) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2028 | { |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2029 | struct bpf_prog *old_prog; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2030 | int i; |
| 2031 | |
| 2032 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2033 | while (vi->rq[i].pages) |
| 2034 | __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2035 | |
| 2036 | old_prog = rtnl_dereference(vi->rq[i].xdp_prog); |
| 2037 | RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL); |
| 2038 | if (old_prog) |
| 2039 | bpf_prog_put(old_prog); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2040 | } |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 2041 | } |
| 2042 | |
| 2043 | static void free_receive_bufs(struct virtnet_info *vi) |
| 2044 | { |
| 2045 | rtnl_lock(); |
| 2046 | _free_receive_bufs(vi); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2047 | rtnl_unlock(); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2048 | } |
| 2049 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2050 | static void free_receive_page_frags(struct virtnet_info *vi) |
| 2051 | { |
| 2052 | int i; |
| 2053 | for (i = 0; i < vi->max_queue_pairs; i++) |
| 2054 | if (vi->rq[i].alloc_frag.page) |
| 2055 | put_page(vi->rq[i].alloc_frag.page); |
| 2056 | } |
| 2057 | |
John Fastabend | b68df01 | 2017-01-25 18:22:48 -0800 | [diff] [blame] | 2058 | static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2059 | { |
| 2060 | if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs)) |
| 2061 | return false; |
| 2062 | else if (q < vi->curr_queue_pairs) |
| 2063 | return true; |
| 2064 | else |
| 2065 | return false; |
| 2066 | } |
| 2067 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2068 | static void free_unused_bufs(struct virtnet_info *vi) |
| 2069 | { |
| 2070 | void *buf; |
| 2071 | int i; |
| 2072 | |
| 2073 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2074 | struct virtqueue *vq = vi->sq[i].vq; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2075 | while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { |
John Fastabend | b68df01 | 2017-01-25 18:22:48 -0800 | [diff] [blame] | 2076 | if (!is_xdp_raw_buffer_queue(vi, i)) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2077 | dev_kfree_skb(buf); |
| 2078 | else |
| 2079 | put_page(virt_to_head_page(buf)); |
| 2080 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2084 | struct virtqueue *vq = vi->rq[i].vq; |
| 2085 | |
| 2086 | while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2087 | if (vi->mergeable_rx_bufs) { |
| 2088 | unsigned long ctx = (unsigned long)buf; |
| 2089 | void *base = mergeable_ctx_to_buf_address(ctx); |
| 2090 | put_page(virt_to_head_page(base)); |
| 2091 | } else if (vi->big_packets) { |
Andrey Vagin | fa9fac1 | 2013-12-05 18:36:20 +0400 | [diff] [blame] | 2092 | give_pages(&vi->rq[i], buf); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2093 | } else { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 2094 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2095 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2096 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2097 | } |
| 2098 | } |
| 2099 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2100 | static void virtnet_del_vqs(struct virtnet_info *vi) |
| 2101 | { |
| 2102 | struct virtio_device *vdev = vi->vdev; |
| 2103 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 2104 | virtnet_clean_affinity(vi, -1); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2105 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2106 | vdev->config->del_vqs(vdev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2107 | |
| 2108 | virtnet_free_queues(vi); |
| 2109 | } |
| 2110 | |
| 2111 | static int virtnet_find_vqs(struct virtnet_info *vi) |
| 2112 | { |
| 2113 | vq_callback_t **callbacks; |
| 2114 | struct virtqueue **vqs; |
| 2115 | int ret = -ENOMEM; |
| 2116 | int i, total_vqs; |
| 2117 | const char **names; |
| 2118 | |
| 2119 | /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by |
| 2120 | * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by |
| 2121 | * possible control vq. |
| 2122 | */ |
| 2123 | total_vqs = vi->max_queue_pairs * 2 + |
| 2124 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); |
| 2125 | |
| 2126 | /* Allocate space for find_vqs parameters */ |
| 2127 | vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL); |
| 2128 | if (!vqs) |
| 2129 | goto err_vq; |
| 2130 | callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL); |
| 2131 | if (!callbacks) |
| 2132 | goto err_callback; |
| 2133 | names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL); |
| 2134 | if (!names) |
| 2135 | goto err_names; |
| 2136 | |
| 2137 | /* Parameters for control virtqueue, if any */ |
| 2138 | if (vi->has_cvq) { |
| 2139 | callbacks[total_vqs - 1] = NULL; |
| 2140 | names[total_vqs - 1] = "control"; |
| 2141 | } |
| 2142 | |
| 2143 | /* Allocate/initialize parameters for send/receive virtqueues */ |
| 2144 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2145 | callbacks[rxq2vq(i)] = skb_recv_done; |
| 2146 | callbacks[txq2vq(i)] = skb_xmit_done; |
| 2147 | sprintf(vi->rq[i].name, "input.%d", i); |
| 2148 | sprintf(vi->sq[i].name, "output.%d", i); |
| 2149 | names[rxq2vq(i)] = vi->rq[i].name; |
| 2150 | names[txq2vq(i)] = vi->sq[i].name; |
| 2151 | } |
| 2152 | |
| 2153 | ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks, |
Christoph Hellwig | fb5e31d | 2017-02-05 18:15:22 +0100 | [diff] [blame] | 2154 | names, NULL); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2155 | if (ret) |
| 2156 | goto err_find; |
| 2157 | |
| 2158 | if (vi->has_cvq) { |
| 2159 | vi->cvq = vqs[total_vqs - 1]; |
| 2160 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 2161 | vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2165 | vi->rq[i].vq = vqs[rxq2vq(i)]; |
| 2166 | vi->sq[i].vq = vqs[txq2vq(i)]; |
| 2167 | } |
| 2168 | |
| 2169 | kfree(names); |
| 2170 | kfree(callbacks); |
| 2171 | kfree(vqs); |
| 2172 | |
| 2173 | return 0; |
| 2174 | |
| 2175 | err_find: |
| 2176 | kfree(names); |
| 2177 | err_names: |
| 2178 | kfree(callbacks); |
| 2179 | err_callback: |
| 2180 | kfree(vqs); |
| 2181 | err_vq: |
| 2182 | return ret; |
| 2183 | } |
| 2184 | |
| 2185 | static int virtnet_alloc_queues(struct virtnet_info *vi) |
| 2186 | { |
| 2187 | int i; |
| 2188 | |
| 2189 | vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL); |
| 2190 | if (!vi->sq) |
| 2191 | goto err_sq; |
| 2192 | vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL); |
Amerigo Wang | 008d427 | 2012-12-10 02:24:08 +0000 | [diff] [blame] | 2193 | if (!vi->rq) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2194 | goto err_rq; |
| 2195 | |
| 2196 | INIT_DELAYED_WORK(&vi->refill, refill_work); |
| 2197 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2198 | vi->rq[i].pages = NULL; |
| 2199 | netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll, |
| 2200 | napi_weight); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame^] | 2201 | netif_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx, |
| 2202 | napi_tx ? napi_weight : 0); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2203 | |
| 2204 | sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 2205 | ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2206 | sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); |
| 2207 | } |
| 2208 | |
| 2209 | return 0; |
| 2210 | |
| 2211 | err_rq: |
| 2212 | kfree(vi->sq); |
| 2213 | err_sq: |
| 2214 | return -ENOMEM; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2215 | } |
| 2216 | |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2217 | static int init_vqs(struct virtnet_info *vi) |
| 2218 | { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2219 | int ret; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2220 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2221 | /* Allocate send & receive queues */ |
| 2222 | ret = virtnet_alloc_queues(vi); |
| 2223 | if (ret) |
| 2224 | goto err; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2225 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2226 | ret = virtnet_find_vqs(vi); |
| 2227 | if (ret) |
| 2228 | goto err_free; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2229 | |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 2230 | get_online_cpus(); |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 2231 | virtnet_set_affinity(vi); |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 2232 | put_online_cpus(); |
| 2233 | |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2234 | return 0; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2235 | |
| 2236 | err_free: |
| 2237 | virtnet_free_queues(vi); |
| 2238 | err: |
| 2239 | return ret; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2240 | } |
| 2241 | |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2242 | #ifdef CONFIG_SYSFS |
| 2243 | static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue, |
| 2244 | struct rx_queue_attribute *attribute, char *buf) |
| 2245 | { |
| 2246 | struct virtnet_info *vi = netdev_priv(queue->dev); |
| 2247 | unsigned int queue_index = get_netdev_rx_queue_index(queue); |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 2248 | struct ewma_pkt_len *avg; |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2249 | |
| 2250 | BUG_ON(queue_index >= vi->max_queue_pairs); |
| 2251 | avg = &vi->rq[queue_index].mrg_avg_pkt_len; |
| 2252 | return sprintf(buf, "%u\n", get_mergeable_buf_len(avg)); |
| 2253 | } |
| 2254 | |
| 2255 | static struct rx_queue_attribute mergeable_rx_buffer_size_attribute = |
| 2256 | __ATTR_RO(mergeable_rx_buffer_size); |
| 2257 | |
| 2258 | static struct attribute *virtio_net_mrg_rx_attrs[] = { |
| 2259 | &mergeable_rx_buffer_size_attribute.attr, |
| 2260 | NULL |
| 2261 | }; |
| 2262 | |
| 2263 | static const struct attribute_group virtio_net_mrg_rx_group = { |
| 2264 | .name = "virtio_net", |
| 2265 | .attrs = virtio_net_mrg_rx_attrs |
| 2266 | }; |
| 2267 | #endif |
| 2268 | |
Jason Wang | 892d6eb | 2014-11-20 17:03:05 +0800 | [diff] [blame] | 2269 | static bool virtnet_fail_on_feature(struct virtio_device *vdev, |
| 2270 | unsigned int fbit, |
| 2271 | const char *fname, const char *dname) |
| 2272 | { |
| 2273 | if (!virtio_has_feature(vdev, fbit)) |
| 2274 | return false; |
| 2275 | |
| 2276 | dev_err(&vdev->dev, "device advertises feature %s but not %s", |
| 2277 | fname, dname); |
| 2278 | |
| 2279 | return true; |
| 2280 | } |
| 2281 | |
| 2282 | #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ |
| 2283 | virtnet_fail_on_feature(vdev, fbit, #fbit, dbit) |
| 2284 | |
| 2285 | static bool virtnet_validate_features(struct virtio_device *vdev) |
| 2286 | { |
| 2287 | if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) && |
| 2288 | (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX, |
| 2289 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2290 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN, |
| 2291 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2292 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE, |
| 2293 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2294 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") || |
| 2295 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR, |
| 2296 | "VIRTIO_NET_F_CTRL_VQ"))) { |
| 2297 | return false; |
| 2298 | } |
| 2299 | |
| 2300 | return true; |
| 2301 | } |
| 2302 | |
Jarod Wilson | d0c2c99 | 2016-10-20 13:55:21 -0400 | [diff] [blame] | 2303 | #define MIN_MTU ETH_MIN_MTU |
| 2304 | #define MAX_MTU ETH_MAX_MTU |
| 2305 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2306 | static int virtnet_validate(struct virtio_device *vdev) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2307 | { |
Michael S. Tsirkin | 6ba4224 | 2015-01-12 16:23:37 +0200 | [diff] [blame] | 2308 | if (!vdev->config->get) { |
| 2309 | dev_err(&vdev->dev, "%s failure: config access disabled\n", |
| 2310 | __func__); |
| 2311 | return -EINVAL; |
| 2312 | } |
| 2313 | |
Jason Wang | 892d6eb | 2014-11-20 17:03:05 +0800 | [diff] [blame] | 2314 | if (!virtnet_validate_features(vdev)) |
| 2315 | return -EINVAL; |
| 2316 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2317 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { |
| 2318 | int mtu = virtio_cread16(vdev, |
| 2319 | offsetof(struct virtio_net_config, |
| 2320 | mtu)); |
| 2321 | if (mtu < MIN_MTU) |
| 2322 | __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU); |
| 2323 | } |
| 2324 | |
| 2325 | return 0; |
| 2326 | } |
| 2327 | |
| 2328 | static int virtnet_probe(struct virtio_device *vdev) |
| 2329 | { |
| 2330 | int i, err; |
| 2331 | struct net_device *dev; |
| 2332 | struct virtnet_info *vi; |
| 2333 | u16 max_queue_pairs; |
| 2334 | int mtu; |
| 2335 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2336 | /* Find if host supports multiqueue virtio_net device */ |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 2337 | err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ, |
| 2338 | struct virtio_net_config, |
| 2339 | max_virtqueue_pairs, &max_queue_pairs); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2340 | |
| 2341 | /* We need at least 2 queue's */ |
| 2342 | if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || |
| 2343 | max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || |
| 2344 | !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) |
| 2345 | max_queue_pairs = 1; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2346 | |
| 2347 | /* Allocate ourselves a network device with room for our info */ |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2348 | dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2349 | if (!dev) |
| 2350 | return -ENOMEM; |
| 2351 | |
| 2352 | /* Set up network device as normal. */ |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 2353 | dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE; |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 2354 | dev->netdev_ops = &virtnet_netdev; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2355 | dev->features = NETIF_F_HIGHDMA; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 2356 | |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 2357 | dev->ethtool_ops = &virtnet_ethtool_ops; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2358 | SET_NETDEV_DEV(dev, &vdev->dev); |
| 2359 | |
| 2360 | /* Do we support "hardware" checksums? */ |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2361 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2362 | /* This opens up the world of extra features. */ |
Jason Wang | 48900cb | 2015-08-05 10:34:04 +0800 | [diff] [blame] | 2363 | dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2364 | if (csum) |
Jason Wang | 48900cb | 2015-08-05 10:34:04 +0800 | [diff] [blame] | 2365 | dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2366 | |
| 2367 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { |
Vlad Yasevich | e3e3c42 | 2015-02-03 16:36:17 -0500 | [diff] [blame] | 2368 | dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2369 | | NETIF_F_TSO_ECN | NETIF_F_TSO6; |
| 2370 | } |
Rusty Russell | 5539ae96 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 2371 | /* Individual feature bits: what can host handle? */ |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2372 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) |
| 2373 | dev->hw_features |= NETIF_F_TSO; |
| 2374 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) |
| 2375 | dev->hw_features |= NETIF_F_TSO6; |
| 2376 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) |
| 2377 | dev->hw_features |= NETIF_F_TSO_ECN; |
Vlad Yasevich | e3e3c42 | 2015-02-03 16:36:17 -0500 | [diff] [blame] | 2378 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO)) |
| 2379 | dev->hw_features |= NETIF_F_UFO; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2380 | |
Jason Wang | 41f2f12 | 2014-12-24 11:03:52 +0800 | [diff] [blame] | 2381 | dev->features |= NETIF_F_GSO_ROBUST; |
| 2382 | |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2383 | if (gso) |
Vlad Yasevich | e3e3c42 | 2015-02-03 16:36:17 -0500 | [diff] [blame] | 2384 | dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO); |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2385 | /* (!csum && gso) case will be fixed by register_netdev() */ |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2386 | } |
Thomas Huth | 4f49129 | 2013-08-27 17:09:02 +0200 | [diff] [blame] | 2387 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM)) |
| 2388 | dev->features |= NETIF_F_RXCSUM; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2389 | |
Jason Wang | 4fda830 | 2013-04-10 23:32:21 +0000 | [diff] [blame] | 2390 | dev->vlan_features = dev->features; |
| 2391 | |
Jarod Wilson | d0c2c99 | 2016-10-20 13:55:21 -0400 | [diff] [blame] | 2392 | /* MTU range: 68 - 65535 */ |
| 2393 | dev->min_mtu = MIN_MTU; |
| 2394 | dev->max_mtu = MAX_MTU; |
| 2395 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2396 | /* Configuration may specify what MAC to use. Otherwise random. */ |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 2397 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) |
| 2398 | virtio_cread_bytes(vdev, |
| 2399 | offsetof(struct virtio_net_config, mac), |
| 2400 | dev->dev_addr, dev->addr_len); |
| 2401 | else |
Danny Kukawka | f2cedb6 | 2012-02-15 06:45:39 +0000 | [diff] [blame] | 2402 | eth_hw_addr_random(dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2403 | |
| 2404 | /* Set up our device-specific information */ |
| 2405 | vi = netdev_priv(dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2406 | vi->dev = dev; |
| 2407 | vi->vdev = vdev; |
Christian Borntraeger | d9d5dcc | 2008-02-18 10:02:51 +0100 | [diff] [blame] | 2408 | vdev->priv = vi; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 2409 | vi->stats = alloc_percpu(struct virtnet_stats); |
| 2410 | err = -ENOMEM; |
| 2411 | if (vi->stats == NULL) |
| 2412 | goto free; |
| 2413 | |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 2414 | for_each_possible_cpu(i) { |
| 2415 | struct virtnet_stats *virtnet_stats; |
| 2416 | virtnet_stats = per_cpu_ptr(vi->stats, i); |
| 2417 | u64_stats_init(&virtnet_stats->tx_syncp); |
| 2418 | u64_stats_init(&virtnet_stats->rx_syncp); |
| 2419 | } |
| 2420 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2421 | INIT_WORK(&vi->config_work, virtnet_config_changed_work); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2422 | |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 2423 | /* If we can receive ANY GSO packets, we must allocate large ones. */ |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 2424 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || |
| 2425 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) || |
Vlad Yasevich | e3e3c42 | 2015-02-03 16:36:17 -0500 | [diff] [blame] | 2426 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) || |
| 2427 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO)) |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 2428 | vi->big_packets = true; |
| 2429 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 2430 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) |
| 2431 | vi->mergeable_rx_bufs = true; |
| 2432 | |
Michael S. Tsirkin | d04302b | 2014-10-24 00:24:03 +0300 | [diff] [blame] | 2433 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) || |
| 2434 | virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 2435 | vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); |
| 2436 | else |
| 2437 | vi->hdr_len = sizeof(struct virtio_net_hdr); |
| 2438 | |
Michael S. Tsirkin | 7599330 | 2015-07-15 15:26:19 +0300 | [diff] [blame] | 2439 | if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) || |
| 2440 | virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 2441 | vi->any_header_sg = true; |
| 2442 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2443 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) |
| 2444 | vi->has_cvq = true; |
| 2445 | |
Aaron Conole | 14de9d1 | 2016-06-03 16:57:12 -0400 | [diff] [blame] | 2446 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { |
| 2447 | mtu = virtio_cread16(vdev, |
| 2448 | offsetof(struct virtio_net_config, |
| 2449 | mtu)); |
Aaron Conole | 93a205e | 2016-10-25 16:12:12 -0400 | [diff] [blame] | 2450 | if (mtu < dev->min_mtu) { |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2451 | /* Should never trigger: MTU was previously validated |
| 2452 | * in virtnet_validate. |
| 2453 | */ |
| 2454 | dev_err(&vdev->dev, "device MTU appears to have changed " |
| 2455 | "it is now %d < %d", mtu, dev->min_mtu); |
| 2456 | goto free_stats; |
Aaron Conole | 93a205e | 2016-10-25 16:12:12 -0400 | [diff] [blame] | 2457 | } |
Michael S. Tsirkin | 2e123b4 | 2017-03-08 02:14:25 +0200 | [diff] [blame] | 2458 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2459 | dev->mtu = mtu; |
| 2460 | dev->max_mtu = mtu; |
| 2461 | |
Michael S. Tsirkin | 2e123b4 | 2017-03-08 02:14:25 +0200 | [diff] [blame] | 2462 | /* TODO: size buffers correctly in this case. */ |
| 2463 | if (dev->mtu > ETH_DATA_LEN) |
| 2464 | vi->big_packets = true; |
Aaron Conole | 14de9d1 | 2016-06-03 16:57:12 -0400 | [diff] [blame] | 2465 | } |
| 2466 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 2467 | if (vi->any_header_sg) |
| 2468 | dev->needed_headroom = vi->hdr_len; |
Zhangjie \(HZ\) | 6ebbc1a | 2014-04-29 18:43:22 +0800 | [diff] [blame] | 2469 | |
Jason Wang | 4490001 | 2016-11-25 12:37:26 +0800 | [diff] [blame] | 2470 | /* Enable multiqueue by default */ |
| 2471 | if (num_online_cpus() >= max_queue_pairs) |
| 2472 | vi->curr_queue_pairs = max_queue_pairs; |
| 2473 | else |
| 2474 | vi->curr_queue_pairs = num_online_cpus(); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2475 | vi->max_queue_pairs = max_queue_pairs; |
| 2476 | |
| 2477 | /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2478 | err = init_vqs(vi); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2479 | if (err) |
Jason Wang | 9bb8ca8 | 2013-11-05 18:19:45 +0800 | [diff] [blame] | 2480 | goto free_stats; |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2481 | |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2482 | #ifdef CONFIG_SYSFS |
| 2483 | if (vi->mergeable_rx_bufs) |
| 2484 | dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group; |
| 2485 | #endif |
Zhi Yong Wu | 0f13b66b | 2013-11-18 21:19:27 +0800 | [diff] [blame] | 2486 | netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs); |
| 2487 | netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2488 | |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2489 | virtnet_init_settings(dev); |
| 2490 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2491 | err = register_netdev(dev); |
| 2492 | if (err) { |
| 2493 | pr_debug("virtio_net: registering device failed\n"); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2494 | goto free_vqs; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2495 | } |
Rusty Russell | b3369c1 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2496 | |
Michael S. Tsirkin | 4baf1e3 | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 2497 | virtio_device_ready(vdev); |
| 2498 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2499 | err = virtnet_cpu_notif_add(vi); |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2500 | if (err) { |
| 2501 | pr_debug("virtio_net: registering cpu notifier failed\n"); |
wangyunjian | f00e35e | 2016-05-31 11:52:43 +0800 | [diff] [blame] | 2502 | goto free_unregister_netdev; |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2503 | } |
| 2504 | |
Jason Wang | a220871 | 2016-12-13 14:23:05 +0800 | [diff] [blame] | 2505 | virtnet_set_queues(vi, vi->curr_queue_pairs); |
Jason Wang | 4490001 | 2016-11-25 12:37:26 +0800 | [diff] [blame] | 2506 | |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2507 | /* Assume link up if device can't report link status, |
| 2508 | otherwise get link status from config. */ |
| 2509 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { |
| 2510 | netif_carrier_off(dev); |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 2511 | schedule_work(&vi->config_work); |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2512 | } else { |
| 2513 | vi->status = VIRTIO_NET_S_LINK_UP; |
| 2514 | netif_carrier_on(dev); |
| 2515 | } |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2516 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2517 | pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", |
| 2518 | dev->name, max_queue_pairs); |
| 2519 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2520 | return 0; |
| 2521 | |
wangyunjian | f00e35e | 2016-05-31 11:52:43 +0800 | [diff] [blame] | 2522 | free_unregister_netdev: |
Michael S. Tsirkin | 0246555 | 2014-10-15 10:22:31 +1030 | [diff] [blame] | 2523 | vi->vdev->config->reset(vdev); |
| 2524 | |
Rusty Russell | b3369c1 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2525 | unregister_netdev(dev); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2526 | free_vqs: |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2527 | cancel_delayed_work_sync(&vi->refill); |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2528 | free_receive_page_frags(vi); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2529 | virtnet_del_vqs(vi); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 2530 | free_stats: |
| 2531 | free_percpu(vi->stats); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2532 | free: |
| 2533 | free_netdev(dev); |
| 2534 | return err; |
| 2535 | } |
| 2536 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 2537 | static void _remove_vq_common(struct virtnet_info *vi) |
| 2538 | { |
| 2539 | vi->vdev->config->reset(vi->vdev); |
| 2540 | free_unused_bufs(vi); |
| 2541 | _free_receive_bufs(vi); |
| 2542 | free_receive_page_frags(vi); |
| 2543 | virtnet_del_vqs(vi); |
| 2544 | } |
| 2545 | |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2546 | static void remove_vq_common(struct virtnet_info *vi) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2547 | { |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2548 | vi->vdev->config->reset(vi->vdev); |
Shirley Ma | 830a8a9 | 2010-02-08 14:14:42 +0000 | [diff] [blame] | 2549 | |
| 2550 | /* Free unused buffers in both send and recv, if any. */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 2551 | free_unused_bufs(vi); |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 2552 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2553 | free_receive_bufs(vi); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2554 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2555 | free_receive_page_frags(vi); |
| 2556 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2557 | virtnet_del_vqs(vi); |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2558 | } |
| 2559 | |
Bill Pemberton | 8cc085d | 2012-12-03 09:24:15 -0500 | [diff] [blame] | 2560 | static void virtnet_remove(struct virtio_device *vdev) |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2561 | { |
| 2562 | struct virtnet_info *vi = vdev->priv; |
| 2563 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2564 | virtnet_cpu_notif_remove(vi); |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2565 | |
Michael S. Tsirkin | 102a278 | 2014-10-15 10:22:29 +1030 | [diff] [blame] | 2566 | /* Make sure no work handler is accessing the device. */ |
| 2567 | flush_work(&vi->config_work); |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2568 | |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2569 | unregister_netdev(vi->dev); |
| 2570 | |
| 2571 | remove_vq_common(vi); |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 2572 | |
Krishna Kumar | 2e66f55 | 2011-07-20 03:56:02 +0000 | [diff] [blame] | 2573 | free_percpu(vi->stats); |
Rusty Russell | 74b2553 | 2007-11-19 11:20:42 -0500 | [diff] [blame] | 2574 | free_netdev(vi->dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2575 | } |
| 2576 | |
Aaron Lu | 8910700 | 2013-09-17 09:25:23 +0930 | [diff] [blame] | 2577 | #ifdef CONFIG_PM_SLEEP |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2578 | static int virtnet_freeze(struct virtio_device *vdev) |
| 2579 | { |
| 2580 | struct virtnet_info *vi = vdev->priv; |
| 2581 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2582 | virtnet_cpu_notif_remove(vi); |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2583 | virtnet_freeze_down(vdev); |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2584 | remove_vq_common(vi); |
| 2585 | |
| 2586 | return 0; |
| 2587 | } |
| 2588 | |
| 2589 | static int virtnet_restore(struct virtio_device *vdev) |
| 2590 | { |
| 2591 | struct virtnet_info *vi = vdev->priv; |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2592 | int err; |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2593 | |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2594 | err = virtnet_restore_up(vdev); |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2595 | if (err) |
| 2596 | return err; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2597 | virtnet_set_queues(vi, vi->curr_queue_pairs); |
| 2598 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2599 | err = virtnet_cpu_notif_add(vi); |
Jason Wang | ec9debb | 2013-10-29 15:11:07 +0800 | [diff] [blame] | 2600 | if (err) |
| 2601 | return err; |
| 2602 | |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2603 | return 0; |
| 2604 | } |
| 2605 | #endif |
| 2606 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2607 | static struct virtio_device_id id_table[] = { |
| 2608 | { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, |
| 2609 | { 0 }, |
| 2610 | }; |
| 2611 | |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 2612 | #define VIRTNET_FEATURES \ |
| 2613 | VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ |
| 2614 | VIRTIO_NET_F_MAC, \ |
| 2615 | VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ |
| 2616 | VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ |
| 2617 | VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ |
| 2618 | VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ |
| 2619 | VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ |
| 2620 | VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ |
| 2621 | VIRTIO_NET_F_CTRL_MAC_ADDR, \ |
| 2622 | VIRTIO_NET_F_MTU |
| 2623 | |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 2624 | static unsigned int features[] = { |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 2625 | VIRTNET_FEATURES, |
| 2626 | }; |
| 2627 | |
| 2628 | static unsigned int features_legacy[] = { |
| 2629 | VIRTNET_FEATURES, |
| 2630 | VIRTIO_NET_F_GSO, |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 2631 | VIRTIO_F_ANY_LAYOUT, |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 2632 | }; |
| 2633 | |
Uwe Kleine-König | 2240252 | 2009-11-05 01:32:44 -0800 | [diff] [blame] | 2634 | static struct virtio_driver virtio_net_driver = { |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 2635 | .feature_table = features, |
| 2636 | .feature_table_size = ARRAY_SIZE(features), |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 2637 | .feature_table_legacy = features_legacy, |
| 2638 | .feature_table_size_legacy = ARRAY_SIZE(features_legacy), |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2639 | .driver.name = KBUILD_MODNAME, |
| 2640 | .driver.owner = THIS_MODULE, |
| 2641 | .id_table = id_table, |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2642 | .validate = virtnet_validate, |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2643 | .probe = virtnet_probe, |
Bill Pemberton | 8cc085d | 2012-12-03 09:24:15 -0500 | [diff] [blame] | 2644 | .remove = virtnet_remove, |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2645 | .config_changed = virtnet_config_changed, |
Aaron Lu | 8910700 | 2013-09-17 09:25:23 +0930 | [diff] [blame] | 2646 | #ifdef CONFIG_PM_SLEEP |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2647 | .freeze = virtnet_freeze, |
| 2648 | .restore = virtnet_restore, |
| 2649 | #endif |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2650 | }; |
| 2651 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2652 | static __init int virtio_net_driver_init(void) |
| 2653 | { |
| 2654 | int ret; |
| 2655 | |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 2656 | ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online", |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2657 | virtnet_cpu_online, |
| 2658 | virtnet_cpu_down_prep); |
| 2659 | if (ret < 0) |
| 2660 | goto out; |
| 2661 | virtionet_online = ret; |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 2662 | ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead", |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2663 | NULL, virtnet_cpu_dead); |
| 2664 | if (ret) |
| 2665 | goto err_dead; |
| 2666 | |
| 2667 | ret = register_virtio_driver(&virtio_net_driver); |
| 2668 | if (ret) |
| 2669 | goto err_virtio; |
| 2670 | return 0; |
| 2671 | err_virtio: |
| 2672 | cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); |
| 2673 | err_dead: |
| 2674 | cpuhp_remove_multi_state(virtionet_online); |
| 2675 | out: |
| 2676 | return ret; |
| 2677 | } |
| 2678 | module_init(virtio_net_driver_init); |
| 2679 | |
| 2680 | static __exit void virtio_net_driver_exit(void) |
| 2681 | { |
| 2682 | cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); |
| 2683 | cpuhp_remove_multi_state(virtionet_online); |
| 2684 | unregister_virtio_driver(&virtio_net_driver); |
| 2685 | } |
| 2686 | module_exit(virtio_net_driver_exit); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2687 | |
| 2688 | MODULE_DEVICE_TABLE(virtio, id_table); |
| 2689 | MODULE_DESCRIPTION("Virtio network driver"); |
| 2690 | MODULE_LICENSE("GPL"); |