summaryrefslogtreecommitdiffstats
path: root/init/do_mounts.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-07-23 08:23:40 +0200
committerChristoph Hellwig <hch@lst.de>2020-07-31 08:17:52 +0200
commit8fb9f73e5a539ab3aa4785f30fb52c65fa98600c (patch)
tree81f6cb5c68284eb39e7798602e5dc329933ad768 /init/do_mounts.h
parent09267defa36aaff6ff829bd2fc8b043ec151cc3e (diff)
downloadlinux-8fb9f73e5a539ab3aa4785f30fb52c65fa98600c.tar.bz2
init: add an init_unlink helper
Add a simple helper to unlink with a kernel space file name and switch the early init code over to it. Remove the now unused ksys_unlink. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'init/do_mounts.h')
-rw-r--r--init/do_mounts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/do_mounts.h b/init/do_mounts.h
index 20e7fec8cb49..104d8431725a 100644
--- a/init/do_mounts.h
+++ b/init/do_mounts.h
@@ -16,7 +16,7 @@ extern int root_mountflags;
static inline __init int create_dev(char *name, dev_t dev)
{
- ksys_unlink(name);
+ init_unlink(name);
return ksys_mknod(name, S_IFBLK|0600, new_encode_dev(dev));
}