浏览代码

Fix AUTOFS_DEV_IOCTL_REQUESTER_CMD

Missing conversion from kernel to userland dev_t; this sucker
breaks as soon as we get sufficiently many autofs mounts for
new_encode_dev(s_dev) != s_dev.

Note: this is the minimal fix.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro 16 年之前
父节点
当前提交
cf2706a340
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fs/autofs4/dev-ioctl.c

+ 1 - 1
fs/autofs4/dev-ioctl.c

@@ -488,7 +488,7 @@ static int autofs_dev_ioctl_requester(struct file *fp,
 	}
 	}
 
 
 	path = param->path;
 	path = param->path;
-	devid = sbi->sb->s_dev;
+	devid = new_encode_dev(sbi->sb->s_dev);
 
 
 	param->requester.uid = param->requester.gid = -1;
 	param->requester.uid = param->requester.gid = -1;