qnx4.h (9a64e8e0ace51b309fdcff4b4754b3649250382a) | qnx4.h (00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b) |
---|---|
1#include <linux/fs.h> 2#include <linux/qnx4_fs.h> 3 4#define QNX4_DEBUG 0 5 6#if QNX4_DEBUG 7#define QNX4DEBUG(X) printk X 8#else --- 9 unchanged lines hidden (view full) --- 18 19struct qnx4_inode_info { 20 struct qnx4_inode_entry raw; 21 loff_t mmu_private; 22 struct inode vfs_inode; 23}; 24 25extern struct inode *qnx4_iget(struct super_block *, unsigned long); | 1#include <linux/fs.h> 2#include <linux/qnx4_fs.h> 3 4#define QNX4_DEBUG 0 5 6#if QNX4_DEBUG 7#define QNX4DEBUG(X) printk X 8#else --- 9 unchanged lines hidden (view full) --- 18 19struct qnx4_inode_info { 20 struct qnx4_inode_entry raw; 21 loff_t mmu_private; 22 struct inode vfs_inode; 23}; 24 25extern struct inode *qnx4_iget(struct super_block *, unsigned long); |
26extern struct dentry *qnx4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd); | 26extern struct dentry *qnx4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags); |
27extern unsigned long qnx4_count_free_blocks(struct super_block *sb); 28extern unsigned long qnx4_block_map(struct inode *inode, long iblock); 29 30extern const struct inode_operations qnx4_dir_inode_operations; 31extern const struct file_operations qnx4_dir_operations; 32extern int qnx4_is_free(struct super_block *sb, long block); 33 34static inline struct qnx4_sb_info *qnx4_sb(struct super_block *sb) --- 13 unchanged lines hidden --- | 27extern unsigned long qnx4_count_free_blocks(struct super_block *sb); 28extern unsigned long qnx4_block_map(struct inode *inode, long iblock); 29 30extern const struct inode_operations qnx4_dir_inode_operations; 31extern const struct file_operations qnx4_dir_operations; 32extern int qnx4_is_free(struct super_block *sb, long block); 33 34static inline struct qnx4_sb_info *qnx4_sb(struct super_block *sb) --- 13 unchanged lines hidden --- |