diff options
author | jhb <jhb@FreeBSD.org> | 2015-01-29 23:25:36 +0800 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2015-01-29 23:25:36 +0800 |
commit | ce9a3e78579a71d25a43a1ec8f2a6291eb1eaae2 (patch) | |
tree | 9f518b3dc5833c14a0493efc0ce2666438a56484 /net | |
parent | f0d2b56b21ff311e69d4ca9ad8d9149b79549fc4 (diff) | |
download | freebsd-ports-gnome-ce9a3e78579a71d25a43a1ec8f2a6291eb1eaae2.tar.gz freebsd-ports-gnome-ce9a3e78579a71d25a43a1ec8f2a6291eb1eaae2.tar.zst freebsd-ports-gnome-ce9a3e78579a71d25a43a1ec8f2a6291eb1eaae2.zip |
Replace 'd_thread_t' with 'struct thread'. This patch has been accepted
upstream.
PR: 196691
Approved by: maintainer
Diffstat (limited to 'net')
-rw-r--r-- | net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c b/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c new file mode 100644 index 000000000000..54c0b2a1cba4 --- /dev/null +++ b/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c @@ -0,0 +1,18 @@ +--- lib/librte_eal/bsdapp/nic_uio/nic_uio.c.orig 2015-01-09 11:56:48.000000000 -0500 ++++ lib/librte_eal/bsdapp/nic_uio/nic_uio.c 2015-01-09 11:57:05.000000000 -0500 +@@ -175,13 +175,13 @@ + + + int +-nic_uio_open(struct cdev *dev, int oflags, int devtype, d_thread_t *td) ++nic_uio_open(struct cdev *dev, int oflags, int devtype, struct thread *td) + { + return 0; + } + + int +-nic_uio_close(struct cdev *dev, int fflag, int devtype, d_thread_t *td) ++nic_uio_close(struct cdev *dev, int fflag, int devtype, struct thread *td) + { + return 0; + } |