aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/file.h
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2019-06-20 23:07:20 +0000
committerAlan Somers <asomers@FreeBSD.org>2019-06-20 23:07:20 +0000
commit38b06f8ac4a85219287b2ca8f2a56de7d6bbba0c (patch)
treeab4d3879824bd4a514227add6426e73aded8fa4c /sys/sys/file.h
parent68035f638124f85d3423e99e6e2d559d3ebd38c5 (diff)
downloadsrc-38b06f8ac4a85219287b2ca8f2a56de7d6bbba0c.tar.gz
src-38b06f8ac4a85219287b2ca8f2a56de7d6bbba0c.zip
Notes
Diffstat (limited to 'sys/sys/file.h')
-rw-r--r--sys/sys/file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/file.h b/sys/sys/file.h
index 82af5e6b1bbe..942380c1647f 100644
--- a/sys/sys/file.h
+++ b/sys/sys/file.h
@@ -179,7 +179,10 @@ struct file {
/*
* DTYPE_VNODE specific fields.
*/
- int f_seqcount; /* (a) Count of sequential accesses. */
+ union {
+ int16_t f_seqcount; /* (a) Count of sequential accesses. */
+ int f_pipegen;
+ };
off_t f_nextoff; /* next expected read/write offset. */
union {
struct cdev_privdata *fvn_cdevpriv;