Signed-off-by: Ivan Shapovalov <intelfx100@xxxxxxxxx> --- Looks like -ENOTTY is the right thing to return here. (also specified at http://man7.org/linux/man-pages/man2/ioctl.2.html#ERRORS) fs/reiser4/plugin/file/cryptcompress.c | 2 +- fs/reiser4/plugin/file/file.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/reiser4/plugin/file/cryptcompress.c b/fs/reiser4/plugin/file/cryptcompress.c index c3e0948..73f6974 100644 --- a/fs/reiser4/plugin/file/cryptcompress.c +++ b/fs/reiser4/plugin/file/cryptcompress.c @@ -3682,7 +3682,7 @@ int writepages_cryptcompress(struct address_space *mapping, int ioctl_cryptcompress(struct file *filp, unsigned int cmd, unsigned long arg) { - return RETERR(-ENOSYS); + return RETERR(-ENOTTY); } /* plugin->mmap */ diff --git a/fs/reiser4/plugin/file/file.c b/fs/reiser4/plugin/file/file.c index c33f789..1040c994 100644 --- a/fs/reiser4/plugin/file/file.c +++ b/fs/reiser4/plugin/file/file.c @@ -2453,7 +2453,7 @@ int ioctl_unix_file(struct file *filp, unsigned int cmd, break; default: - result = RETERR(-ENOSYS); + result = RETERR(-ENOTTY); break; } reiser4_exit_context(ctx); -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe reiserfs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html