Commit 64419d93 authored by Pekka Enberg's avatar Pekka Enberg Committed by Anton Altaparmakov

NTFS: We have struct kmem_cache now so use it instead of the typedef.

Signed-off-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent 0f36b018
...@@ -50,11 +50,11 @@ typedef enum { ...@@ -50,11 +50,11 @@ typedef enum {
/* Global variables. */ /* Global variables. */
/* Slab caches (from super.c). */ /* Slab caches (from super.c). */
extern kmem_cache_t *ntfs_name_cache; extern struct kmem_cache *ntfs_name_cache;
extern kmem_cache_t *ntfs_inode_cache; extern struct kmem_cache *ntfs_inode_cache;
extern kmem_cache_t *ntfs_big_inode_cache; extern struct kmem_cache *ntfs_big_inode_cache;
extern kmem_cache_t *ntfs_attr_ctx_cache; extern struct kmem_cache *ntfs_attr_ctx_cache;
extern kmem_cache_t *ntfs_index_ctx_cache; extern struct kmem_cache *ntfs_index_ctx_cache;
/* The various operations structs defined throughout the driver files. */ /* The various operations structs defined throughout the driver files. */
extern struct address_space_operations ntfs_aops; extern struct address_space_operations ntfs_aops;
......
...@@ -2987,14 +2987,14 @@ err_out_now: ...@@ -2987,14 +2987,14 @@ err_out_now:
* strings of the maximum length allowed by NTFS, which is NTFS_MAX_NAME_LEN * strings of the maximum length allowed by NTFS, which is NTFS_MAX_NAME_LEN
* (255) Unicode characters + a terminating NULL Unicode character. * (255) Unicode characters + a terminating NULL Unicode character.
*/ */
kmem_cache_t *ntfs_name_cache; struct kmem_cache *ntfs_name_cache;
/* Slab caches for efficient allocation/deallocation of inodes. */ /* Slab caches for efficient allocation/deallocation of inodes. */
kmem_cache_t *ntfs_inode_cache; struct kmem_cache *ntfs_inode_cache;
kmem_cache_t *ntfs_big_inode_cache; struct kmem_cache *ntfs_big_inode_cache;
/* Init once constructor for the inode slab cache. */ /* Init once constructor for the inode slab cache. */
static void ntfs_big_inode_init_once(void *foo, kmem_cache_t *cachep, static void ntfs_big_inode_init_once(void *foo, struct kmem_cache *cachep,
unsigned long flags) unsigned long flags)
{ {
ntfs_inode *ni = (ntfs_inode *)foo; ntfs_inode *ni = (ntfs_inode *)foo;
...@@ -3008,8 +3008,8 @@ static void ntfs_big_inode_init_once(void *foo, kmem_cache_t *cachep, ...@@ -3008,8 +3008,8 @@ static void ntfs_big_inode_init_once(void *foo, kmem_cache_t *cachep,
* Slab caches to optimize allocations and deallocations of attribute search * Slab caches to optimize allocations and deallocations of attribute search
* contexts and index contexts, respectively. * contexts and index contexts, respectively.
*/ */
kmem_cache_t *ntfs_attr_ctx_cache; struct kmem_cache *ntfs_attr_ctx_cache;
kmem_cache_t *ntfs_index_ctx_cache; struct kmem_cache *ntfs_index_ctx_cache;
/* Driver wide semaphore. */ /* Driver wide semaphore. */
DECLARE_MUTEX(ntfs_lock); DECLARE_MUTEX(ntfs_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment