aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2016-03-27 08:07:12 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2016-03-27 08:07:12 +0000
commitd016708959625e3d68127e7691f72dd1b2b38dba (patch)
treed5a5c235bd5be2b98c21c5a0cc9c893196e48453 /sys/ufs
parent35b9ea3d0912237f240483c38ad33c2e25cd0e50 (diff)
downloadsrc-d016708959625e3d68127e7691f72dd1b2b38dba.tar.gz
src-d016708959625e3d68127e7691f72dd1b2b38dba.zip
Style: wrap long lines.
Sponsored by: The FreeBSD Foundation MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=297308
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ufs/ufsmount.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h
index 7148b76f3836..6b357c1b6cc9 100644
--- a/sys/ufs/ufs/ufsmount.h
+++ b/sys/ufs/ufs/ufsmount.h
@@ -85,11 +85,13 @@ struct ufsmount {
int64_t um_savedmaxfilesize; /* XXX - limit maxfilesize */
int um_candelete; /* devvp supports TRIM */
int um_writesuspended; /* suspension in progress */
- int (*um_balloc)(struct vnode *, off_t, int, struct ucred *, int, struct buf **);
+ int (*um_balloc)(struct vnode *, off_t, int, struct ucred *,
+ int, struct buf **);
int (*um_blkatoff)(struct vnode *, off_t, char **, struct buf **);
int (*um_truncate)(struct vnode *, off_t, int, struct ucred *);
int (*um_update)(struct vnode *, int);
- int (*um_valloc)(struct vnode *, int, struct ucred *, struct vnode **);
+ int (*um_valloc)(struct vnode *, int, struct ucred *,
+ struct vnode **);
int (*um_vfree)(struct vnode *, ino_t, int);
void (*um_ifree)(struct ufsmount *, struct inode *);
int (*um_rdonly)(struct inode *);