fs.h (ee3e542fec6e69bc9fb668698889a37d93950ddf) | fs.h (1c8924eb106c1ac755d5d35ce9b3ff42e89e2511) |
---|---|
1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4 5#include <linux/linkage.h> 6#include <linux/wait.h> 7#include <linux/kdev_t.h> 8#include <linux/dcache.h> --- 2489 unchanged lines hidden (view full) --- 2498 int nofs); 2499extern int page_symlink(struct inode *inode, const char *symname, int len); 2500extern const struct inode_operations page_symlink_inode_operations; 2501extern int generic_readlink(struct dentry *, char __user *, int); 2502extern void generic_fillattr(struct inode *, struct kstat *); 2503extern int vfs_getattr(struct path *, struct kstat *); 2504void __inode_add_bytes(struct inode *inode, loff_t bytes); 2505void inode_add_bytes(struct inode *inode, loff_t bytes); | 1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4 5#include <linux/linkage.h> 6#include <linux/wait.h> 7#include <linux/kdev_t.h> 8#include <linux/dcache.h> --- 2489 unchanged lines hidden (view full) --- 2498 int nofs); 2499extern int page_symlink(struct inode *inode, const char *symname, int len); 2500extern const struct inode_operations page_symlink_inode_operations; 2501extern int generic_readlink(struct dentry *, char __user *, int); 2502extern void generic_fillattr(struct inode *, struct kstat *); 2503extern int vfs_getattr(struct path *, struct kstat *); 2504void __inode_add_bytes(struct inode *inode, loff_t bytes); 2505void inode_add_bytes(struct inode *inode, loff_t bytes); |
2506void __inode_sub_bytes(struct inode *inode, loff_t bytes); |
|
2506void inode_sub_bytes(struct inode *inode, loff_t bytes); 2507loff_t inode_get_bytes(struct inode *inode); 2508void inode_set_bytes(struct inode *inode, loff_t bytes); 2509 2510extern int vfs_readdir(struct file *, filldir_t, void *); 2511extern int iterate_dir(struct file *, struct dir_context *); 2512 2513extern int vfs_stat(const char __user *, struct kstat *); --- 230 unchanged lines hidden --- | 2507void inode_sub_bytes(struct inode *inode, loff_t bytes); 2508loff_t inode_get_bytes(struct inode *inode); 2509void inode_set_bytes(struct inode *inode, loff_t bytes); 2510 2511extern int vfs_readdir(struct file *, filldir_t, void *); 2512extern int iterate_dir(struct file *, struct dir_context *); 2513 2514extern int vfs_stat(const char __user *, struct kstat *); --- 230 unchanged lines hidden --- |