|
@@ -954,4 +954,15 @@ int ksys_chroot(const char __user *filename);
|
|
ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count);
|
|
ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count);
|
|
int ksys_chdir(const char __user *filename);
|
|
int ksys_chdir(const char __user *filename);
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * The following kernel syscall equivalents are just wrappers to fs-internal
|
|
|
|
+ * functions. Therefore, provide stubs to be inlined at the callsites.
|
|
|
|
+ */
|
|
|
|
+extern long do_unlinkat(int dfd, struct filename *name);
|
|
|
|
+
|
|
|
|
+static inline long ksys_unlink(const char __user *pathname)
|
|
|
|
+{
|
|
|
|
+ return do_unlinkat(AT_FDCWD, getname(pathname));
|
|
|
|
+}
|
|
|
|
+
|
|
#endif
|
|
#endif
|