summaryrefslogtreecommitdiff
path: root/fs/overlayfs/params.h
AgeCommit message (Collapse)AuthorFilesLines
2023-10-31ovl: store and show the user provided lowerdir mount optionAmir Goldstein1-0/+1
We are about to add new mount options for adding lowerdir one by one, but those mount options will not support escaping. For the existing case, where lowerdir mount option is provided as a colon separated list, store the user provided (possibly escaped) string and display it as is when showing the lowerdir mount option. Signed-off-by: Amir Goldstein <amir73il@gmail.com>
2023-07-03ovl: move all parameter handling into params.{c,h}Christian Brauner1-0/+42
While initially I thought that we couldn't move all new mount api handling into params.{c,h} it turns out it is possible. So this just moves a good chunk of code out of super.c and into params.{c,h}. Signed-off-by: Christian Brauner <brauner@kernel.org> Signed-off-by: Amir Goldstein <amir73il@gmail.com>