summaryrefslogtreecommitdiff
path: root/fs/attr.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2013-10-02 01:42:02 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-06 04:21:03 +0400
commit13c589d5b0ac654d9da7e490a2dd548e6b86b4a5 (patch)
treef78d4c8dc6111601655d0782fad28a3c3ad6af3c /fs/attr.c
parent8ef445f0807457dd7d158e43d9e8f9568c47910d (diff)
downloadlinux-13c589d5b0ac654d9da7e490a2dd548e6b86b4a5.tar.xz
sysfs: use seq_file when reading regular files
sysfs read path implements its own buffering scheme between userland and kernel callbacks, which essentially is a degenerate duplicate of seq_file. This patch replaces the custom read buffering implementation in sysfs with seq_file. While the amount of code reduction is small, this reduces low level hairiness and enables future development of a new versatile API based on seq_file so that sysfs features can be shared with other subsystems. As write path was already converted to not use sysfs_open_file->page, this patch makes ->page and ->count unused and removes them. Userland behavior remains the same except for some extreme corner cases - e.g. sysfs will now regenerate the content each time a file is read after a non-contiguous seek whereas the original code would keep using the same content. While this is a userland visible behavior change, it is extremely unlikely to be noticeable and brings sysfs behavior closer to that of procfs. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Kay Sievers <kay@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/attr.c')
0 files changed, 0 insertions, 0 deletions