svn commit: r378121 - head/net/dpdk/files

John Baldwin jhb at FreeBSD.org
Thu Jan 29 15:25:37 UTC 2015


Author: jhb (src,doc committer)
Date: Thu Jan 29 15:25:36 2015
New Revision: 378121
URL: https://svnweb.freebsd.org/changeset/ports/378121
QAT: https://qat.redports.org/buildarchive/r378121/

Log:
  Replace 'd_thread_t' with 'struct thread'.  This patch has been accepted
  upstream.
  
  PR:		196691
  Approved by:	maintainer

Added:
  head/net/dpdk/files/
  head/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c   (contents, props changed)

Added: head/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpdk/files/patch-lib-librte_eal-bsdapp-nic_uio-nic_uio.c	Thu Jan 29 15:25:36 2015	(r378121)
@@ -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;
+ }


More information about the svn-ports-all mailing list