diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2006-02-05 21:43:57 +0000 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2006-02-05 21:43:57 +0000 |
commit | 64419d93a5906600af5817ad0cae3c6ecf7fb389 (patch) | |
tree | 9bb76dcc8b19580a2b177418c3a3cbe91c703126 /fs/ntfs/ntfs.h | |
parent | 0f36b018b2e314d45af86449f1a97facb1fbe300 (diff) | |
download | kernel_samsung_espresso10-64419d93a5906600af5817ad0cae3c6ecf7fb389.zip kernel_samsung_espresso10-64419d93a5906600af5817ad0cae3c6ecf7fb389.tar.gz kernel_samsung_espresso10-64419d93a5906600af5817ad0cae3c6ecf7fb389.tar.bz2 |
NTFS: We have struct kmem_cache now so use it instead of the typedef.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/ntfs.h')
-rw-r--r-- | fs/ntfs/ntfs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ntfs/ntfs.h b/fs/ntfs/ntfs.h index 446b501..653d2a5 100644 --- a/fs/ntfs/ntfs.h +++ b/fs/ntfs/ntfs.h @@ -50,11 +50,11 @@ typedef enum { /* Global variables. */ /* Slab caches (from super.c). */ -extern kmem_cache_t *ntfs_name_cache; -extern kmem_cache_t *ntfs_inode_cache; -extern kmem_cache_t *ntfs_big_inode_cache; -extern kmem_cache_t *ntfs_attr_ctx_cache; -extern kmem_cache_t *ntfs_index_ctx_cache; +extern struct kmem_cache *ntfs_name_cache; +extern struct kmem_cache *ntfs_inode_cache; +extern struct kmem_cache *ntfs_big_inode_cache; +extern struct kmem_cache *ntfs_attr_ctx_cache; +extern struct kmem_cache *ntfs_index_ctx_cache; /* The various operations structs defined throughout the driver files. */ extern struct address_space_operations ntfs_aops; |