Commit 258b26be authored by Nathan Scott's avatar Nathan Scott

[XFS] final round of code cleanup, now using 3-clause-bsd in these headers

SGI Modid: 2.5.x-xfs:slinx:159997a
parent 59e0f831
...@@ -40,11 +40,7 @@ ...@@ -40,11 +40,7 @@
* 2. Redistributions in binary form must reproduce the above copyright * 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software * 3. Neither the name of the University nor the names of its contributors
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software * may be used to endorse or promote products derived from this software
* without specific prior written permission. * without specific prior written permission.
* *
......
...@@ -40,11 +40,7 @@ ...@@ -40,11 +40,7 @@
* 2. Redistributions in binary form must reproduce the above copyright * 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software * 3. Neither the name of the University nor the names of its contributors
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software * may be used to endorse or promote products derived from this software
* without specific prior written permission. * without specific prior written permission.
* *
...@@ -73,11 +69,11 @@ enum uio_seg { ...@@ -73,11 +69,11 @@ enum uio_seg {
}; };
struct uio { struct uio {
struct iovec *uio_iov; struct iovec *uio_iov; /* pointer to array of iovecs */
int uio_iovcnt; int uio_iovcnt; /* number of iovecs in array */
xfs_off_t uio_offset; xfs_off_t uio_offset; /* offset in file this uio corresponds to */
int uio_resid; int uio_resid; /* residual i/o count */
enum uio_seg uio_segflg; enum uio_seg uio_segflg; /* see above */
}; };
typedef struct uio uio_t; typedef struct uio uio_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment