diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2019-07-16 21:59:35 +0900 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-07-16 10:16:33 -0600 |
commit | 1624b0b200399bd6cd2b46ab3494738d1aef6b75 (patch) | |
tree | 3fc5f4635617ae1b9000920b3c59a47f14fc0fbd /block | |
parent | 07b0fdecb2477396bcb69609019aade2b22124a1 (diff) |
block: fix sysfs module parameters directory path in comment
The runtime configurable module parameter files are located under
/sys/module/MODULENAME/parameters, not /sys/module/MODULENAME.
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r-- | block/genhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/genhd.c b/block/genhd.c index 97887e59f3b2..54f1f0d381f4 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -1969,7 +1969,7 @@ static const struct attribute *disk_events_attrs[] = { * The default polling interval can be specified by the kernel * parameter block.events_dfl_poll_msecs which defaults to 0 * (disable). This can also be modified runtime by writing to - * /sys/module/block/events_dfl_poll_msecs. + * /sys/module/block/parameters/events_dfl_poll_msecs. */ static int disk_events_set_dfl_poll_msecs(const char *val, const struct kernel_param *kp) |