diff options
author | Daniel Golle <daniel@makrotopia.org> | 2023-12-19 02:33:24 +0000 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2024-02-25 22:41:33 +0100 |
commit | 7e84c961b2eb062d2f47037dcca52dcd1d3615b5 (patch) | |
tree | 21a7388dc6708d72f756ceaa4876ad481c47c5ac /include/linux/mtd | |
parent | 927c145208b04490fb40c5c88a1086b592bfac25 (diff) | |
download | linux-7e84c961b2eb062d2f47037dcca52dcd1d3615b5.tar.gz linux-7e84c961b2eb062d2f47037dcca52dcd1d3615b5.tar.bz2 linux-7e84c961b2eb062d2f47037dcca52dcd1d3615b5.zip |
mtd: ubi: introduce pre-removal notification for UBI volumes
Introduce a new notification type UBI_VOLUME_SHUTDOWN to inform users
that a volume is just about to be removed.
This is needed because users (such as the NVMEM subsystem) expect that
at the time their removal function is called, the parenting device is
still available (for removal of sysfs nodes, for example, in case of
NVMEM which otherwise WARNs on volume removal).
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/ubi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mtd/ubi.h b/include/linux/mtd/ubi.h index a529347fd75b..562f92504f2b 100644 --- a/include/linux/mtd/ubi.h +++ b/include/linux/mtd/ubi.h @@ -192,6 +192,7 @@ struct ubi_device_info { * or a volume was removed) * @UBI_VOLUME_RESIZED: a volume has been re-sized * @UBI_VOLUME_RENAMED: a volume has been re-named + * @UBI_VOLUME_SHUTDOWN: a volume is going to removed, shutdown users * @UBI_VOLUME_UPDATED: data has been written to a volume * * These constants define which type of event has happened when a volume @@ -202,6 +203,7 @@ enum { UBI_VOLUME_REMOVED, UBI_VOLUME_RESIZED, UBI_VOLUME_RENAMED, + UBI_VOLUME_SHUTDOWN, UBI_VOLUME_UPDATED, }; |