switch file_open_root() to struct path
[linux-block.git] / arch / um / drivers / mconsole_kern.c
index 6d00af25ec6b04167da503e532f0cbc8792e9bfb..c42b10024e2666b3784b060b9b682384daaffb66 100644 (file)
@@ -140,7 +140,7 @@ void mconsole_proc(struct mc_request *req)
                mconsole_reply(req, "Proc not available", 1, 0);
                goto out;
        }
-       file = file_open_root(mnt->mnt_root, mnt, ptr, O_RDONLY, 0);
+       file = file_open_root_mnt(mnt, ptr, O_RDONLY, 0);
        if (IS_ERR(file)) {
                mconsole_reply(req, "Failed to open file", 1, 0);
                printk(KERN_ERR "open /proc/%s: %ld\n", ptr, PTR_ERR(file));