summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/ext4/disklayout/block_group_32.go
diff options
context:
space:
mode:
authorAyush Ranjan <ayushranjan@google.com>2019-07-02 14:03:31 -0700
committergVisor bot <gvisor-bot@google.com>2019-07-02 14:04:31 -0700
commitd8ec2fb671e68a2504c10bd254ae64f33752430d (patch)
tree95727196ac8751510a4555f559ec2d540ae7f23f /pkg/sentry/fs/ext4/disklayout/block_group_32.go
parentd60ae0ddee1799c8e45d0f7394f128ea67eb0ab8 (diff)
Ext4: DiskLayout: Inode interface.
PiperOrigin-RevId: 256234390
Diffstat (limited to 'pkg/sentry/fs/ext4/disklayout/block_group_32.go')
-rw-r--r--pkg/sentry/fs/ext4/disklayout/block_group_32.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/sentry/fs/ext4/disklayout/block_group_32.go b/pkg/sentry/fs/ext4/disklayout/block_group_32.go
index 087f1fb4a..dadecb3e3 100644
--- a/pkg/sentry/fs/ext4/disklayout/block_group_32.go
+++ b/pkg/sentry/fs/ext4/disklayout/block_group_32.go
@@ -15,8 +15,8 @@
package disklayout
// BlockGroup32Bit emulates the first half of struct ext4_group_desc in
-// fs/ext4/ext4.h. It is the block group descriptor struct for 32-bit ext4
-// filesystems. It implements BlockGroup interface.
+// fs/ext4/ext4.h. It is the block group descriptor struct for ext2, ext3 and
+// 32-bit ext4 filesystems. It implements BlockGroup interface.
//
// The suffix `Lo` here stands for lower bits because this is also used in the
// 64-bit version where these fields represent the lower half of the fields.