mbox series

[v5,0/1] ceph: add sysfs entries signifying new mount syntax support

Message ID 20211103050039.371277-1-vshankar@redhat.com (mailing list archive)
Headers show
Series ceph: add sysfs entries signifying new mount syntax support | expand

Message

Venky Shankar Nov. 3, 2021, 5 a.m. UTC
v5:
  - switch to sysfs instead of debugfs

[This is based on top of new mount syntax series]

Patrick/Ilya proposed the idea of having sysfs entries to signify if
kernel supports the new (v2) mount syntax. The primary use of this
information is to catch any bugs in the new syntax implementation.

This would be done as follows::

The userspace mount helper tries to mount using the new mount syntax
and fallsback to using old syntax if the mount using new syntax fails.
However, a bug in the new mount syntax implementation can silently
result in the mount helper switching to old syntax.

So, the sysfs entries can be relied upon by the mount helper to
check if the kernel supports the new mount syntax. Cases when the
mount using the new syntax fails, but the kernel does support the
new mount syntax, the mount helper could probably log before switching
to the old syntax (or fail the mount altogether when run in test mode).

sysfs entries are as follows::

    /sys/module/ceph/parameters/
    ....
    ....
    /sys/module/ceph/parameters/mount_syntax_v2
    /sys/module/ceph/parameters/mount_syntax_v1
    ....
    ....

Venky Shankar (1):
  ceph: mount syntax module parameter

 fs/ceph/super.c | 8 ++++++++
 1 file changed, 8 insertions(+)