Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jun 2025 00:36:07 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: beae50a72396 - stable/14 - fsck_ffs: change struct bufarea member b_index type to uint64_t
Message-ID:  <202506030036.5530a7E8074529@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by kib:

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

commit beae50a72396e26e0caab50ade2d6c2ec6ca38eb
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2025-05-25 18:11:58 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-06-03 00:35:47 +0000

    fsck_ffs: change struct bufarea member b_index type to uint64_t
    
    (cherry picked from commit e36f069ecb478b9775b7ad717768d011251d479e)
---
 sbin/fsck_ffs/fsck.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/fsck_ffs/fsck.h b/sbin/fsck_ffs/fsck.h
index 2e15dad00d12..b34309ddafc9 100644
--- a/sbin/fsck_ffs/fsck.h
+++ b/sbin/fsck_ffs/fsck.h
@@ -154,7 +154,7 @@ struct bufarea {
 	int b_flags;				/* B_ flags below */
 	int b_type;				/* BT_ type below */
 	int b_refcnt;				/* ref count of users */
-	int b_index;				/* for BT_LEVEL, ptr index */
+	uint64_t b_index;			/* for BT_LEVEL, ptr index */
 						/* for BT_INODES, first inum */
 	union {
 		char *b_buf;			/* buffer space */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506030036.5530a7E8074529>