git: 42bcec08a25f - stable/13 - Spacing and alignment cleanups.

From: Kirk McKusick <mckusick_at_FreeBSD.org>
Date: Mon, 04 Dec 2023 23:29:50 UTC
The branch stable/13 has been updated by mckusick:

URL: https://cgit.FreeBSD.org/src/commit/?id=42bcec08a25fad52ed1f83de2f3216a816e9a2d1

commit 42bcec08a25fad52ed1f83de2f3216a816e9a2d1
Author:     Kirk McKusick <mckusick@FreeBSD.org>
AuthorDate: 2023-11-17 22:39:13 +0000
Commit:     Kirk McKusick <mckusick@FreeBSD.org>
CommitDate: 2023-12-04 23:29:33 +0000

    Spacing and alignment cleanups.
    
    No functional change.
    
    (cherry picked from commit bde3cdf18d9881abfbe45337020e996dbeabca76)
---
 sys/ufs/ufs/inode.h | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys/ufs/ufs/inode.h b/sys/ufs/ufs/inode.h
index eb66aaae1f10..898f30204b00 100644
--- a/sys/ufs/ufs/inode.h
+++ b/sys/ufs/ufs/inode.h
@@ -78,10 +78,10 @@ struct iown_tracker {
  * exclusive.
  */
 struct inode {
-	TAILQ_ENTRY(inode) i_nextsnap; /* snapshot file list. */
-	struct	vnode  *i_vnode;/* Vnode associated with this inode. */
-	struct 	ufsmount *i_ump;/* Ufsmount point associated with this inode. */
-	struct	 dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */
+	TAILQ_ENTRY(inode) i_nextsnap; /* Snapshot file list. */
+	struct vnode	*i_vnode; /* Vnode associated with this inode. */
+	struct ufsmount	*i_ump; /* Ufsmount point associated with this inode. */
+	struct dquot	*i_dquot[MAXQUOTAS]; /* Dquot structures. */
 	union {
 		struct dirhash *dirhash; /* Hashing for large directories. */
 		daddr_t *snapblklist;    /* Collect expunged snapshot blocks. */
@@ -95,7 +95,7 @@ struct inode {
 	} dinode_u;
 
 	ino_t	  i_number;	/* The identity of the inode. */
-	uint32_t i_flag;	/* flags, see below */
+	uint32_t  i_flag;	/* flags, see below */
 	int	  i_effnlink;	/* i_nlink when I/O completes */
 
 	/*
@@ -126,12 +126,12 @@ struct inode {
 	 * Copies from the on-disk dinode itself.
 	 */
 	uint64_t i_size;	/* File byte count. */
-	uint64_t i_gen;	/* Generation number. */
+	uint64_t i_gen;		/* Generation number. */
 	uint32_t i_flags;	/* Status flags (chflags). */
-	uint32_t i_uid;	/* File owner. */
-	uint32_t i_gid;	/* File group. */
+	uint32_t i_uid;		/* File owner. */
+	uint32_t i_gid;		/* File group. */
+	int16_t  i_nlink;	/* File link count. */
 	uint16_t i_mode;	/* IFMT, permissions; see below. */
-	int16_t	  i_nlink;	/* File link count. */
 };
 /*
  * These flags are kept in i_flag.