From: Bruce Richardson Date: Fri, 16 Jan 2015 12:24:13 +0000 (+0000) Subject: nic_uio: fix thread structure compatibility for future FreeBSD X-Git-Tag: spdx-start~9849 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=01e66999efcb62efd5ed649045845f763e8b6379;p=dpdk.git nic_uio: fix thread structure compatibility for future FreeBSD Replace d_thread_t with struct thread in nic_uio. Ref: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196691 Quote: "The d_thread_t typedef is a compat shim to support FreeBSD 4.x. I'm planning to remove this shim from 11 and dpdk is very unlikely to ever be ported to 4.x. If it does it will need far more changes than just d_thread_t" Reported-by: John Baldwin Signed-off-by: Bruce Richardson --- diff --git a/lib/librte_eal/bsdapp/nic_uio/nic_uio.c b/lib/librte_eal/bsdapp/nic_uio/nic_uio.c index ed11d845bb..5ae8560439 100644 --- a/lib/librte_eal/bsdapp/nic_uio/nic_uio.c +++ b/lib/librte_eal/bsdapp/nic_uio/nic_uio.c @@ -175,13 +175,13 @@ nic_uio_mmap_single(struct cdev *cdev, vm_ooffset_t *offset, vm_size_t size, 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; }