net/mlx4: refactor internal flow rules
[dpdk.git] / drivers / net / mlx4 / mlx4.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2012 6WIND S.A.
5  *   Copyright 2012 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 /**
35  * @file
36  * mlx4 driver initialization.
37  */
38
39 #include <assert.h>
40 #include <errno.h>
41 #include <inttypes.h>
42 #include <stddef.h>
43 #include <stdint.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47
48 /* Verbs headers do not support -pedantic. */
49 #ifdef PEDANTIC
50 #pragma GCC diagnostic ignored "-Wpedantic"
51 #endif
52 #include <infiniband/verbs.h>
53 #ifdef PEDANTIC
54 #pragma GCC diagnostic error "-Wpedantic"
55 #endif
56
57 #include <rte_common.h>
58 #include <rte_dev.h>
59 #include <rte_errno.h>
60 #include <rte_ethdev.h>
61 #include <rte_ethdev_pci.h>
62 #include <rte_ether.h>
63 #include <rte_interrupts.h>
64 #include <rte_kvargs.h>
65 #include <rte_malloc.h>
66 #include <rte_mbuf.h>
67
68 #include "mlx4.h"
69 #include "mlx4_flow.h"
70 #include "mlx4_rxtx.h"
71 #include "mlx4_utils.h"
72
73 /** Configuration structure for device arguments. */
74 struct mlx4_conf {
75         struct {
76                 uint32_t present; /**< Bit-field for existing ports. */
77                 uint32_t enabled; /**< Bit-field for user-enabled ports. */
78         } ports;
79 };
80
81 /* Available parameters list. */
82 const char *pmd_mlx4_init_params[] = {
83         MLX4_PMD_PORT_KVARG,
84         NULL,
85 };
86
87 /**
88  * DPDK callback for Ethernet device configuration.
89  *
90  * @param dev
91  *   Pointer to Ethernet device structure.
92  *
93  * @return
94  *   0 on success, negative errno value otherwise and rte_errno is set.
95  */
96 static int
97 mlx4_dev_configure(struct rte_eth_dev *dev)
98 {
99         struct priv *priv = dev->data->dev_private;
100         int ret;
101
102         /* Prepare internal flow rules. */
103         ret = mlx4_flow_sync(priv);
104         if (ret)
105                 ERROR("cannot set up internal flow rules: %s",
106                       strerror(-ret));
107         return ret;
108 }
109
110 /**
111  * DPDK callback to start the device.
112  *
113  * Simulate device start by attaching all configured flows.
114  *
115  * @param dev
116  *   Pointer to Ethernet device structure.
117  *
118  * @return
119  *   0 on success, negative errno value otherwise and rte_errno is set.
120  */
121 static int
122 mlx4_dev_start(struct rte_eth_dev *dev)
123 {
124         struct priv *priv = dev->data->dev_private;
125         int ret;
126
127         if (priv->started)
128                 return 0;
129         DEBUG("%p: attaching configured flows to all RX queues", (void *)dev);
130         priv->started = 1;
131         ret = mlx4_intr_install(priv);
132         if (ret) {
133                 ERROR("%p: interrupt handler installation failed",
134                      (void *)dev);
135                 goto err;
136         }
137         ret = mlx4_flow_start(priv);
138         if (ret) {
139                 ERROR("%p: flow start failed: %s",
140                       (void *)dev, strerror(ret));
141                 goto err;
142         }
143         return 0;
144 err:
145         /* Rollback. */
146         priv->started = 0;
147         return ret;
148 }
149
150 /**
151  * DPDK callback to stop the device.
152  *
153  * Simulate device stop by detaching all configured flows.
154  *
155  * @param dev
156  *   Pointer to Ethernet device structure.
157  */
158 static void
159 mlx4_dev_stop(struct rte_eth_dev *dev)
160 {
161         struct priv *priv = dev->data->dev_private;
162
163         if (!priv->started)
164                 return;
165         DEBUG("%p: detaching flows from all RX queues", (void *)dev);
166         priv->started = 0;
167         mlx4_flow_stop(priv);
168         mlx4_intr_uninstall(priv);
169 }
170
171 /**
172  * DPDK callback to close the device.
173  *
174  * Destroy all queues and objects, free memory.
175  *
176  * @param dev
177  *   Pointer to Ethernet device structure.
178  */
179 static void
180 mlx4_dev_close(struct rte_eth_dev *dev)
181 {
182         struct priv *priv = dev->data->dev_private;
183         unsigned int i;
184
185         if (priv == NULL)
186                 return;
187         DEBUG("%p: closing device \"%s\"",
188               (void *)dev,
189               ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
190         mlx4_flow_clean(priv);
191         dev->rx_pkt_burst = mlx4_rx_burst_removed;
192         dev->tx_pkt_burst = mlx4_tx_burst_removed;
193         for (i = 0; i != dev->data->nb_rx_queues; ++i)
194                 mlx4_rx_queue_release(dev->data->rx_queues[i]);
195         for (i = 0; i != dev->data->nb_tx_queues; ++i)
196                 mlx4_tx_queue_release(dev->data->tx_queues[i]);
197         if (priv->pd != NULL) {
198                 assert(priv->ctx != NULL);
199                 claim_zero(ibv_dealloc_pd(priv->pd));
200                 claim_zero(ibv_close_device(priv->ctx));
201         } else
202                 assert(priv->ctx == NULL);
203         mlx4_intr_uninstall(priv);
204         memset(priv, 0, sizeof(*priv));
205 }
206
207 static const struct eth_dev_ops mlx4_dev_ops = {
208         .dev_configure = mlx4_dev_configure,
209         .dev_start = mlx4_dev_start,
210         .dev_stop = mlx4_dev_stop,
211         .dev_set_link_down = mlx4_dev_set_link_down,
212         .dev_set_link_up = mlx4_dev_set_link_up,
213         .dev_close = mlx4_dev_close,
214         .link_update = mlx4_link_update,
215         .stats_get = mlx4_stats_get,
216         .stats_reset = mlx4_stats_reset,
217         .dev_infos_get = mlx4_dev_infos_get,
218         .rx_queue_setup = mlx4_rx_queue_setup,
219         .tx_queue_setup = mlx4_tx_queue_setup,
220         .rx_queue_release = mlx4_rx_queue_release,
221         .tx_queue_release = mlx4_tx_queue_release,
222         .flow_ctrl_get = mlx4_flow_ctrl_get,
223         .flow_ctrl_set = mlx4_flow_ctrl_set,
224         .mtu_set = mlx4_mtu_set,
225         .filter_ctrl = mlx4_filter_ctrl,
226         .rx_queue_intr_enable = mlx4_rx_intr_enable,
227         .rx_queue_intr_disable = mlx4_rx_intr_disable,
228 };
229
230 /**
231  * Get PCI information from struct ibv_device.
232  *
233  * @param device
234  *   Pointer to Ethernet device structure.
235  * @param[out] pci_addr
236  *   PCI bus address output buffer.
237  *
238  * @return
239  *   0 on success, negative errno value otherwise and rte_errno is set.
240  */
241 static int
242 mlx4_ibv_device_to_pci_addr(const struct ibv_device *device,
243                             struct rte_pci_addr *pci_addr)
244 {
245         FILE *file;
246         char line[32];
247         MKSTR(path, "%s/device/uevent", device->ibdev_path);
248
249         file = fopen(path, "rb");
250         if (file == NULL) {
251                 rte_errno = errno;
252                 return -rte_errno;
253         }
254         while (fgets(line, sizeof(line), file) == line) {
255                 size_t len = strlen(line);
256                 int ret;
257
258                 /* Truncate long lines. */
259                 if (len == (sizeof(line) - 1))
260                         while (line[(len - 1)] != '\n') {
261                                 ret = fgetc(file);
262                                 if (ret == EOF)
263                                         break;
264                                 line[(len - 1)] = ret;
265                         }
266                 /* Extract information. */
267                 if (sscanf(line,
268                            "PCI_SLOT_NAME="
269                            "%" SCNx32 ":%" SCNx8 ":%" SCNx8 ".%" SCNx8 "\n",
270                            &pci_addr->domain,
271                            &pci_addr->bus,
272                            &pci_addr->devid,
273                            &pci_addr->function) == 4) {
274                         ret = 0;
275                         break;
276                 }
277         }
278         fclose(file);
279         return 0;
280 }
281
282 /**
283  * Verify and store value for device argument.
284  *
285  * @param[in] key
286  *   Key argument to verify.
287  * @param[in] val
288  *   Value associated with key.
289  * @param[in, out] conf
290  *   Shared configuration data.
291  *
292  * @return
293  *   0 on success, negative errno value otherwise and rte_errno is set.
294  */
295 static int
296 mlx4_arg_parse(const char *key, const char *val, struct mlx4_conf *conf)
297 {
298         unsigned long tmp;
299
300         errno = 0;
301         tmp = strtoul(val, NULL, 0);
302         if (errno) {
303                 rte_errno = errno;
304                 WARN("%s: \"%s\" is not a valid integer", key, val);
305                 return -rte_errno;
306         }
307         if (strcmp(MLX4_PMD_PORT_KVARG, key) == 0) {
308                 uint32_t ports = rte_log2_u32(conf->ports.present);
309
310                 if (tmp >= ports) {
311                         ERROR("port index %lu outside range [0,%" PRIu32 ")",
312                               tmp, ports);
313                         return -EINVAL;
314                 }
315                 if (!(conf->ports.present & (1 << tmp))) {
316                         rte_errno = EINVAL;
317                         ERROR("invalid port index %lu", tmp);
318                         return -rte_errno;
319                 }
320                 conf->ports.enabled |= 1 << tmp;
321         } else {
322                 rte_errno = EINVAL;
323                 WARN("%s: unknown parameter", key);
324                 return -rte_errno;
325         }
326         return 0;
327 }
328
329 /**
330  * Parse device parameters.
331  *
332  * @param devargs
333  *   Device arguments structure.
334  *
335  * @return
336  *   0 on success, negative errno value otherwise and rte_errno is set.
337  */
338 static int
339 mlx4_args(struct rte_devargs *devargs, struct mlx4_conf *conf)
340 {
341         struct rte_kvargs *kvlist;
342         unsigned int arg_count;
343         int ret = 0;
344         int i;
345
346         if (devargs == NULL)
347                 return 0;
348         kvlist = rte_kvargs_parse(devargs->args, pmd_mlx4_init_params);
349         if (kvlist == NULL) {
350                 rte_errno = EINVAL;
351                 ERROR("failed to parse kvargs");
352                 return -rte_errno;
353         }
354         /* Process parameters. */
355         for (i = 0; pmd_mlx4_init_params[i]; ++i) {
356                 arg_count = rte_kvargs_count(kvlist, MLX4_PMD_PORT_KVARG);
357                 while (arg_count-- > 0) {
358                         ret = rte_kvargs_process(kvlist,
359                                                  MLX4_PMD_PORT_KVARG,
360                                                  (int (*)(const char *,
361                                                           const char *,
362                                                           void *))
363                                                  mlx4_arg_parse,
364                                                  conf);
365                         if (ret != 0)
366                                 goto free_kvlist;
367                 }
368         }
369 free_kvlist:
370         rte_kvargs_free(kvlist);
371         return ret;
372 }
373
374 static struct rte_pci_driver mlx4_driver;
375
376 /**
377  * DPDK callback to register a PCI device.
378  *
379  * This function creates an Ethernet device for each port of a given
380  * PCI device.
381  *
382  * @param[in] pci_drv
383  *   PCI driver structure (mlx4_driver).
384  * @param[in] pci_dev
385  *   PCI device information.
386  *
387  * @return
388  *   0 on success, negative errno value otherwise and rte_errno is set.
389  */
390 static int
391 mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
392 {
393         struct ibv_device **list;
394         struct ibv_device *ibv_dev;
395         int err = 0;
396         struct ibv_context *attr_ctx = NULL;
397         struct ibv_device_attr device_attr;
398         struct mlx4_conf conf = {
399                 .ports.present = 0,
400         };
401         unsigned int vf;
402         int i;
403
404         (void)pci_drv;
405         assert(pci_drv == &mlx4_driver);
406         list = ibv_get_device_list(&i);
407         if (list == NULL) {
408                 rte_errno = errno;
409                 assert(rte_errno);
410                 if (rte_errno == ENOSYS)
411                         ERROR("cannot list devices, is ib_uverbs loaded?");
412                 return -rte_errno;
413         }
414         assert(i >= 0);
415         /*
416          * For each listed device, check related sysfs entry against
417          * the provided PCI ID.
418          */
419         while (i != 0) {
420                 struct rte_pci_addr pci_addr;
421
422                 --i;
423                 DEBUG("checking device \"%s\"", list[i]->name);
424                 if (mlx4_ibv_device_to_pci_addr(list[i], &pci_addr))
425                         continue;
426                 if ((pci_dev->addr.domain != pci_addr.domain) ||
427                     (pci_dev->addr.bus != pci_addr.bus) ||
428                     (pci_dev->addr.devid != pci_addr.devid) ||
429                     (pci_dev->addr.function != pci_addr.function))
430                         continue;
431                 vf = (pci_dev->id.device_id ==
432                       PCI_DEVICE_ID_MELLANOX_CONNECTX3VF);
433                 INFO("PCI information matches, using device \"%s\" (VF: %s)",
434                      list[i]->name, (vf ? "true" : "false"));
435                 attr_ctx = ibv_open_device(list[i]);
436                 err = errno;
437                 break;
438         }
439         if (attr_ctx == NULL) {
440                 ibv_free_device_list(list);
441                 switch (err) {
442                 case 0:
443                         rte_errno = ENODEV;
444                         ERROR("cannot access device, is mlx4_ib loaded?");
445                         return -rte_errno;
446                 case EINVAL:
447                         rte_errno = EINVAL;
448                         ERROR("cannot use device, are drivers up to date?");
449                         return -rte_errno;
450                 }
451                 assert(err > 0);
452                 rte_errno = err;
453                 return -rte_errno;
454         }
455         ibv_dev = list[i];
456         DEBUG("device opened");
457         if (ibv_query_device(attr_ctx, &device_attr)) {
458                 rte_errno = ENODEV;
459                 goto error;
460         }
461         INFO("%u port(s) detected", device_attr.phys_port_cnt);
462         conf.ports.present |= (UINT64_C(1) << device_attr.phys_port_cnt) - 1;
463         if (mlx4_args(pci_dev->device.devargs, &conf)) {
464                 ERROR("failed to process device arguments");
465                 rte_errno = EINVAL;
466                 goto error;
467         }
468         /* Use all ports when none are defined */
469         if (!conf.ports.enabled)
470                 conf.ports.enabled = conf.ports.present;
471         for (i = 0; i < device_attr.phys_port_cnt; i++) {
472                 uint32_t port = i + 1; /* ports are indexed from one */
473                 struct ibv_context *ctx = NULL;
474                 struct ibv_port_attr port_attr;
475                 struct ibv_pd *pd = NULL;
476                 struct priv *priv = NULL;
477                 struct rte_eth_dev *eth_dev = NULL;
478                 struct ether_addr mac;
479
480                 /* If port is not enabled, skip. */
481                 if (!(conf.ports.enabled & (1 << i)))
482                         continue;
483                 DEBUG("using port %u", port);
484                 ctx = ibv_open_device(ibv_dev);
485                 if (ctx == NULL) {
486                         rte_errno = ENODEV;
487                         goto port_error;
488                 }
489                 /* Check port status. */
490                 err = ibv_query_port(ctx, port, &port_attr);
491                 if (err) {
492                         rte_errno = err;
493                         ERROR("port query failed: %s", strerror(rte_errno));
494                         goto port_error;
495                 }
496                 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
497                         rte_errno = ENOTSUP;
498                         ERROR("port %d is not configured in Ethernet mode",
499                               port);
500                         goto port_error;
501                 }
502                 if (port_attr.state != IBV_PORT_ACTIVE)
503                         DEBUG("port %d is not active: \"%s\" (%d)",
504                               port, ibv_port_state_str(port_attr.state),
505                               port_attr.state);
506                 /* Make asynchronous FD non-blocking to handle interrupts. */
507                 if (mlx4_fd_set_non_blocking(ctx->async_fd) < 0) {
508                         ERROR("cannot make asynchronous FD non-blocking: %s",
509                               strerror(rte_errno));
510                         goto port_error;
511                 }
512                 /* Allocate protection domain. */
513                 pd = ibv_alloc_pd(ctx);
514                 if (pd == NULL) {
515                         rte_errno = ENOMEM;
516                         ERROR("PD allocation failure");
517                         goto port_error;
518                 }
519                 /* from rte_ethdev.c */
520                 priv = rte_zmalloc("ethdev private structure",
521                                    sizeof(*priv),
522                                    RTE_CACHE_LINE_SIZE);
523                 if (priv == NULL) {
524                         rte_errno = ENOMEM;
525                         ERROR("priv allocation failure");
526                         goto port_error;
527                 }
528                 priv->ctx = ctx;
529                 priv->device_attr = device_attr;
530                 priv->port = port;
531                 priv->pd = pd;
532                 priv->mtu = ETHER_MTU;
533                 priv->vf = vf;
534                 /* Configure the first MAC address by default. */
535                 if (mlx4_get_mac(priv, &mac.addr_bytes)) {
536                         ERROR("cannot get MAC address, is mlx4_en loaded?"
537                               " (rte_errno: %s)", strerror(rte_errno));
538                         goto port_error;
539                 }
540                 INFO("port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
541                      priv->port,
542                      mac.addr_bytes[0], mac.addr_bytes[1],
543                      mac.addr_bytes[2], mac.addr_bytes[3],
544                      mac.addr_bytes[4], mac.addr_bytes[5]);
545                 /* Register MAC address. */
546                 priv->mac = mac;
547 #ifndef NDEBUG
548                 {
549                         char ifname[IF_NAMESIZE];
550
551                         if (mlx4_get_ifname(priv, &ifname) == 0)
552                                 DEBUG("port %u ifname is \"%s\"",
553                                       priv->port, ifname);
554                         else
555                                 DEBUG("port %u ifname is unknown", priv->port);
556                 }
557 #endif
558                 /* Get actual MTU if possible. */
559                 mlx4_mtu_get(priv, &priv->mtu);
560                 DEBUG("port %u MTU is %u", priv->port, priv->mtu);
561                 /* from rte_ethdev.c */
562                 {
563                         char name[RTE_ETH_NAME_MAX_LEN];
564
565                         snprintf(name, sizeof(name), "%s port %u",
566                                  ibv_get_device_name(ibv_dev), port);
567                         eth_dev = rte_eth_dev_allocate(name);
568                 }
569                 if (eth_dev == NULL) {
570                         ERROR("can not allocate rte ethdev");
571                         rte_errno = ENOMEM;
572                         goto port_error;
573                 }
574                 eth_dev->data->dev_private = priv;
575                 eth_dev->data->mac_addrs = &priv->mac;
576                 eth_dev->device = &pci_dev->device;
577                 rte_eth_copy_pci_info(eth_dev, pci_dev);
578                 eth_dev->device->driver = &mlx4_driver.driver;
579                 /* Initialize local interrupt handle for current port. */
580                 priv->intr_handle = (struct rte_intr_handle){
581                         .fd = -1,
582                         .type = RTE_INTR_HANDLE_EXT,
583                 };
584                 /*
585                  * Override ethdev interrupt handle pointer with private
586                  * handle instead of that of the parent PCI device used by
587                  * default. This prevents it from being shared between all
588                  * ports of the same PCI device since each of them is
589                  * associated its own Verbs context.
590                  *
591                  * Rx interrupts in particular require this as the PMD has
592                  * no control over the registration of queue interrupts
593                  * besides setting up eth_dev->intr_handle, the rest is
594                  * handled by rte_intr_rx_ctl().
595                  */
596                 eth_dev->intr_handle = &priv->intr_handle;
597                 priv->dev = eth_dev;
598                 eth_dev->dev_ops = &mlx4_dev_ops;
599                 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
600                 /* Bring Ethernet device up. */
601                 DEBUG("forcing Ethernet interface up");
602                 mlx4_dev_set_link_up(priv->dev);
603                 /* Update link status once if waiting for LSC. */
604                 if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
605                         mlx4_link_update(eth_dev, 0);
606                 continue;
607 port_error:
608                 rte_free(priv);
609                 if (pd)
610                         claim_zero(ibv_dealloc_pd(pd));
611                 if (ctx)
612                         claim_zero(ibv_close_device(ctx));
613                 if (eth_dev)
614                         rte_eth_dev_release_port(eth_dev);
615                 break;
616         }
617         if (i == device_attr.phys_port_cnt)
618                 return 0;
619         /*
620          * XXX if something went wrong in the loop above, there is a resource
621          * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
622          * long as the dpdk does not provide a way to deallocate a ethdev and a
623          * way to enumerate the registered ethdevs to free the previous ones.
624          */
625 error:
626         if (attr_ctx)
627                 claim_zero(ibv_close_device(attr_ctx));
628         if (list)
629                 ibv_free_device_list(list);
630         assert(rte_errno >= 0);
631         return -rte_errno;
632 }
633
634 static const struct rte_pci_id mlx4_pci_id_map[] = {
635         {
636                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
637                                PCI_DEVICE_ID_MELLANOX_CONNECTX3)
638         },
639         {
640                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
641                                PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO)
642         },
643         {
644                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
645                                PCI_DEVICE_ID_MELLANOX_CONNECTX3VF)
646         },
647         {
648                 .vendor_id = 0
649         }
650 };
651
652 static struct rte_pci_driver mlx4_driver = {
653         .driver = {
654                 .name = MLX4_DRIVER_NAME
655         },
656         .id_table = mlx4_pci_id_map,
657         .probe = mlx4_pci_probe,
658         .drv_flags = RTE_PCI_DRV_INTR_LSC |
659                      RTE_PCI_DRV_INTR_RMV,
660 };
661
662 /**
663  * Driver initialization routine.
664  */
665 RTE_INIT(rte_mlx4_pmd_init);
666 static void
667 rte_mlx4_pmd_init(void)
668 {
669         /*
670          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
671          * huge pages. Calling ibv_fork_init() during init allows
672          * applications to use fork() safely for purposes other than
673          * using this PMD, which is not supported in forked processes.
674          */
675         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
676         ibv_fork_init();
677         rte_pci_register(&mlx4_driver);
678 }
679
680 RTE_PMD_EXPORT_NAME(net_mlx4, __COUNTER__);
681 RTE_PMD_REGISTER_PCI_TABLE(net_mlx4, mlx4_pci_id_map);
682 RTE_PMD_REGISTER_KMOD_DEP(net_mlx4,
683         "* ib_uverbs & mlx4_en & mlx4_core & mlx4_ib");