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