diff options
Diffstat (limited to 'include/linux/dcache.h')
| -rw-r--r-- | include/linux/dcache.h | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 025727bf6797..3f3ff4ccdc3f 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -55,6 +55,11 @@ struct qstr {  #define QSTR_INIT(n,l) { { { .len = l } }, .name = n } +extern const char empty_string[]; +extern const struct qstr empty_name; +extern const char slash_string[]; +extern const struct qstr slash_name; +  struct dentry_stat_t {  	long nr_dentry;  	long nr_unused; @@ -592,8 +597,8 @@ static inline struct inode *d_real_inode(const struct dentry *dentry)  }  struct name_snapshot { -	const char *name; -	char inline_name[DNAME_INLINE_LEN]; +	const unsigned char *name; +	unsigned char inline_name[DNAME_INLINE_LEN];  };  void take_dentry_name_snapshot(struct name_snapshot *, struct dentry *);  void release_dentry_name_snapshot(struct name_snapshot *);  | 
