fs.h (bdd1d2d3d251c65b74ac4493e08db18971c09240) | fs.h (e13ec939e96b13e664bb6cee361cc976a0ee621a) |
---|---|
1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4#include <linux/linkage.h> 5#include <linux/wait_bit.h> 6#include <linux/kdev_t.h> 7#include <linux/dcache.h> 8#include <linux/path.h> --- 2765 unchanged lines hidden (view full) --- 2774 2775extern int kernel_read_file(struct file *, void **, loff_t *, loff_t, 2776 enum kernel_read_file_id); 2777extern int kernel_read_file_from_path(char *, void **, loff_t *, loff_t, 2778 enum kernel_read_file_id); 2779extern int kernel_read_file_from_fd(int, void **, loff_t *, loff_t, 2780 enum kernel_read_file_id); 2781extern ssize_t kernel_read(struct file *, void *, size_t, loff_t *); | 1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4#include <linux/linkage.h> 5#include <linux/wait_bit.h> 6#include <linux/kdev_t.h> 7#include <linux/dcache.h> 8#include <linux/path.h> --- 2765 unchanged lines hidden (view full) --- 2774 2775extern int kernel_read_file(struct file *, void **, loff_t *, loff_t, 2776 enum kernel_read_file_id); 2777extern int kernel_read_file_from_path(char *, void **, loff_t *, loff_t, 2778 enum kernel_read_file_id); 2779extern int kernel_read_file_from_fd(int, void **, loff_t *, loff_t, 2780 enum kernel_read_file_id); 2781extern ssize_t kernel_read(struct file *, void *, size_t, loff_t *); |
2782extern ssize_t kernel_write(struct file *, const char *, size_t, loff_t); | 2782extern ssize_t kernel_write(struct file *, const void *, size_t, loff_t *); |
2783extern ssize_t __kernel_write(struct file *, const char *, size_t, loff_t *); 2784extern struct file * open_exec(const char *); 2785 2786/* fs/dcache.c -- generic fs support functions */ 2787extern bool is_subdir(struct dentry *, struct dentry *); 2788extern bool path_is_under(const struct path *, const struct path *); 2789 2790extern char *file_path(struct file *, char *, int); --- 543 unchanged lines hidden --- | 2783extern ssize_t __kernel_write(struct file *, const char *, size_t, loff_t *); 2784extern struct file * open_exec(const char *); 2785 2786/* fs/dcache.c -- generic fs support functions */ 2787extern bool is_subdir(struct dentry *, struct dentry *); 2788extern bool path_is_under(const struct path *, const struct path *); 2789 2790extern char *file_path(struct file *, char *, int); --- 543 unchanged lines hidden --- |