svn commit: r297786 - stable/10/sys/ufs/ufs

Konstantin Belousov kib at FreeBSD.org
Sun Apr 10 16:27:47 UTC 2016


Author: kib
Date: Sun Apr 10 16:27:46 2016
New Revision: 297786
URL: https://svnweb.freebsd.org/changeset/base/297786

Log:
  MFC r297308:
  Style: wrap long lines.

Modified:
  stable/10/sys/ufs/ufs/ufsmount.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/ufs/ufs/ufsmount.h
==============================================================================
--- stable/10/sys/ufs/ufs/ufsmount.h	Sun Apr 10 15:50:45 2016	(r297785)
+++ stable/10/sys/ufs/ufs/ufsmount.h	Sun Apr 10 16:27:46 2016	(r297786)
@@ -87,11 +87,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 *);


More information about the svn-src-stable mailing list