diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-09 09:50:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-09 09:50:42 -0700 |
commit | 76487845fd23bc2346244fbf7c1a6eb1ed845d28 (patch) | |
tree | 87e988d800aada37bee65419c238f857ef0fb3d7 /fs | |
parent | 4770353b660abc8b1a5d2afc233b6061d48e7d80 (diff) | |
parent | ed04a91f718e6e1ab82d47a22b26e4b50c1666f6 (diff) | |
download | linux-stable-76487845fd23bc2346244fbf7c1a6eb1ed845d28.tar.gz linux-stable-76487845fd23bc2346244fbf7c1a6eb1ed845d28.tar.bz2 linux-stable-76487845fd23bc2346244fbf7c1a6eb1ed845d28.zip |
Merge tag 'xfs-6.5-merge-6' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
Pull xfs fix from Darrick Wong:
"Nothing exciting here, just getting rid of a gcc warning that I got
tired of seeing when I turn on gcov"
* tag 'xfs-6.5-merge-6' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
xfs: fix uninit warning in xfs_growfs_data
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/xfs_fsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c index 122b83488a05..7cb75cb6b8e9 100644 --- a/fs/xfs/xfs_fsops.c +++ b/fs/xfs/xfs_fsops.c @@ -93,7 +93,7 @@ xfs_growfs_data_private( xfs_agnumber_t nagimax = 0; xfs_rfsblock_t nb, nb_div, nb_mod; int64_t delta; - bool lastag_extended; + bool lastag_extended = false; xfs_agnumber_t oagcount; struct xfs_trans *tp; struct aghdr_init_data id = {}; |