aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Piotrowski <0mp@FreeBSD.org>2025-12-01 18:32:21 +0000
committerMateusz Piotrowski <0mp@FreeBSD.org>2025-12-04 15:18:55 +0000
commit8740d7e4d183189d259163aa30179ad14c77c0c4 (patch)
treed6e7fd57df7cb5913795ce764332f69ca7a7b678
parent15afd75e67102f81c37adbf11966e48685bd7be7 (diff)
uio.h: Indent struct uio according to style(9)
Approved by: christos (mentor) MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D54071
-rw-r--r--sys/sys/uio.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/sys/uio.h b/sys/sys/uio.h
index 05c1ed640b63..58bb7b13b253 100644
--- a/sys/sys/uio.h
+++ b/sys/sys/uio.h
@@ -50,13 +50,13 @@ typedef __off_t off_t;
#ifdef _KERNEL
struct uio {
- struct iovec *uio_iov; /* scatter/gather list */
- int uio_iovcnt; /* length of scatter/gather list */
- off_t uio_offset; /* offset in target object */
- ssize_t uio_resid; /* remaining bytes to process */
- enum uio_seg uio_segflg; /* address space */
- enum uio_rw uio_rw; /* operation */
- struct thread *uio_td; /* owner */
+ struct iovec *uio_iov; /* scatter/gather list */
+ int uio_iovcnt; /* length of scatter/gather list */
+ off_t uio_offset; /* offset in target object */
+ ssize_t uio_resid; /* remaining bytes to process */
+ enum uio_seg uio_segflg; /* address space */
+ enum uio_rw uio_rw; /* operation */
+ struct thread *uio_td; /* owner */
};
/*