diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2025-06-24 23:51:31 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2025-06-29 19:03:30 -0400 |
| commit | 8c5a853f58c5b86b033842b78a0ad3d1208672fa (patch) | |
| tree | fb42b78f898fecbf668fb2ac061e6a7053248cd2 /fs/mount.h | |
| parent | 94a8d0027606397ce58b00077bf6146f25923965 (diff) | |
mnt_slave_list/mnt_slave: turn into hlist_head/hlist_node
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
| -rw-r--r-- | fs/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mount.h b/fs/mount.h index f299dc85446d..08583428b10b 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -69,8 +69,8 @@ struct mount { struct list_head mnt_list; struct list_head mnt_expire; /* link in fs-specific expiry list */ struct list_head mnt_share; /* circular list of shared mounts */ - struct list_head mnt_slave_list;/* list of slave mounts */ - struct list_head mnt_slave; /* slave list entry */ + struct hlist_head mnt_slave_list;/* list of slave mounts */ + struct hlist_node mnt_slave; /* slave list entry */ struct mount *mnt_master; /* slave is on master->mnt_slave_list */ struct mnt_namespace *mnt_ns; /* containing namespace */ struct mountpoint *mnt_mp; /* where is it mounted */ |