Module Name: src
Committed By: riastradh
Date: Fri Dec 13 22:32:45 UTC 2024
Modified Files:
src/sys/ufs/ffs: fs.h
Log Message:
sys/ufs/ffs/fs.h: Fix confusing comment about struct fs.
This is the on-disk format, not a purely in-memory data structure
like struct ufsmount. While the on-disk format happens to be copied
into memory, it is misleading to say `in memory' here.
To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/ufs/ffs/fs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/ufs/ffs/fs.h
diff -u src/sys/ufs/ffs/fs.h:1.72 src/sys/ufs/ffs/fs.h:1.73
--- src/sys/ufs/ffs/fs.h:1.72 Mon May 13 00:01:54 2024
+++ src/sys/ufs/ffs/fs.h Fri Dec 13 22:32:45 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: fs.h,v 1.72 2024/05/13 00:01:54 msaitoh Exp $ */
+/* $NetBSD: fs.h,v 1.73 2024/12/13 22:32:45 riastradh Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@@ -251,7 +251,7 @@ struct csum_total {
/*
- * Super block for an FFS file system in memory.
+ * Super block for an FFS file system.
*/
struct fs {
int32_t fs_firstfield; /* historic file system linked list, */