You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Slab API: remove useless ctor parameter and reorder parameters
Slab constructors currently have a flags parameter that is never used. And
the order of the arguments is opposite to other slab functions. The object
pointer is placed before the kmem_cache pointer.
Convert
ctor(void *object, struct kmem_cache *s, unsigned long flags)
to
ctor(struct kmem_cache *s, void *object)
throughout the kernel
[akpm@linux-foundation.org: coupla fixes]
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
b811c202a0
commit
4ba9b9d0ba
@@ -1272,7 +1272,7 @@ struct sysdev_class dma_sysclass = {
|
||||
|
||||
/* kmem cache implementation */
|
||||
|
||||
static void s3c2410_dma_cache_ctor(void *p, struct kmem_cache *c, unsigned long f)
|
||||
static void s3c2410_dma_cache_ctor(struct kmem_cache *c, void *p)
|
||||
{
|
||||
memset(p, 0, sizeof(struct s3c2410_dma_buf));
|
||||
}
|
||||
|
||||
@@ -286,7 +286,7 @@ static ssize_t rtas_flash_read(struct file *file, char __user *buf,
|
||||
}
|
||||
|
||||
/* constructor for flash_block_cache */
|
||||
void rtas_block_ctor(void *ptr, struct kmem_cache *cache, unsigned long flags)
|
||||
void rtas_block_ctor(struct kmem_cache *cache, void *ptr)
|
||||
{
|
||||
memset(ptr, 0, RTAS_BLK_SIZE);
|
||||
}
|
||||
|
||||
@@ -526,7 +526,7 @@ repeat:
|
||||
return err;
|
||||
}
|
||||
|
||||
static void zero_ctor(void *addr, struct kmem_cache *cache, unsigned long flags)
|
||||
static void zero_ctor(struct kmem_cache *cache, void *addr)
|
||||
{
|
||||
memset(addr, 0, kmem_cache_size(cache));
|
||||
}
|
||||
|
||||
@@ -142,7 +142,7 @@ static int __init setup_kcore(void)
|
||||
module_init(setup_kcore);
|
||||
#endif
|
||||
|
||||
static void zero_ctor(void *addr, struct kmem_cache *cache, unsigned long flags)
|
||||
static void zero_ctor(struct kmem_cache *cache, void *addr)
|
||||
{
|
||||
memset(addr, 0, kmem_cache_size(cache));
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ spufs_destroy_inode(struct inode *inode)
|
||||
}
|
||||
|
||||
static void
|
||||
spufs_init_once(void *p, struct kmem_cache * cachep, unsigned long flags)
|
||||
spufs_init_once(struct kmem_cache *cachep, void *p)
|
||||
{
|
||||
struct spufs_inode_info *ei = p;
|
||||
|
||||
|
||||
+1
-2
@@ -292,8 +292,7 @@ void pmb_unmap(unsigned long addr)
|
||||
} while (pmbe);
|
||||
}
|
||||
|
||||
static void pmb_cache_ctor(void *pmb, struct kmem_cache *cachep,
|
||||
unsigned long flags)
|
||||
static void pmb_cache_ctor(struct kmem_cache *cachep, void *pmb)
|
||||
{
|
||||
struct pmb_entry *pmbe = pmb;
|
||||
|
||||
|
||||
@@ -193,7 +193,7 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
|
||||
return pte;
|
||||
}
|
||||
|
||||
void pmd_ctor(void *pmd, struct kmem_cache *cache, unsigned long flags)
|
||||
void pmd_ctor(struct kmem_cache *cache, void *pmd)
|
||||
{
|
||||
memset(pmd, 0, PTRS_PER_PMD*sizeof(pmd_t));
|
||||
}
|
||||
|
||||
@@ -933,8 +933,7 @@ write_error:
|
||||
* @cache: the lock tree entry slab cache
|
||||
* @flags: constructor flags
|
||||
*/
|
||||
static void ltree_entry_ctor(void *obj, struct kmem_cache *cache,
|
||||
unsigned long flags)
|
||||
static void ltree_entry_ctor(struct kmem_cache *cache, void *obj)
|
||||
{
|
||||
struct ltree_entry *le = obj;
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ struct mon_reader_text {
|
||||
|
||||
static struct dentry *mon_dir; /* Usually /sys/kernel/debug/usbmon */
|
||||
|
||||
static void mon_text_ctor(void *, struct kmem_cache *, unsigned long);
|
||||
static void mon_text_ctor(struct kmem_cache *, void *);
|
||||
|
||||
struct mon_text_ptr {
|
||||
int cnt, limit;
|
||||
@@ -720,7 +720,7 @@ void mon_text_del(struct mon_bus *mbus)
|
||||
/*
|
||||
* Slab interface: constructor.
|
||||
*/
|
||||
static void mon_text_ctor(void *mem, struct kmem_cache *slab, unsigned long sflags)
|
||||
static void mon_text_ctor(struct kmem_cache *slab, void *mem)
|
||||
{
|
||||
/*
|
||||
* Nothing to initialize. No, really!
|
||||
|
||||
+1
-1
@@ -228,7 +228,7 @@ static void adfs_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache *cachep, void *foo)
|
||||
{
|
||||
struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
|
||||
|
||||
|
||||
+1
-1
@@ -84,7 +84,7 @@ static void affs_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache *cachep, void *foo)
|
||||
{
|
||||
struct affs_inode_info *ei = (struct affs_inode_info *) foo;
|
||||
|
||||
|
||||
+2
-4
@@ -27,8 +27,7 @@
|
||||
|
||||
#define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */
|
||||
|
||||
static void afs_i_init_once(void *foo, struct kmem_cache *cachep,
|
||||
unsigned long flags);
|
||||
static void afs_i_init_once(struct kmem_cache *cachep, void *foo);
|
||||
static int afs_get_sb(struct file_system_type *fs_type,
|
||||
int flags, const char *dev_name,
|
||||
void *data, struct vfsmount *mnt);
|
||||
@@ -446,8 +445,7 @@ static void afs_put_super(struct super_block *sb)
|
||||
/*
|
||||
* initialise an inode cache slab element prior to any use
|
||||
*/
|
||||
static void afs_i_init_once(void *_vnode, struct kmem_cache *cachep,
|
||||
unsigned long flags)
|
||||
static void afs_i_init_once(struct kmem_cache *cachep, void *_vnode)
|
||||
{
|
||||
struct afs_vnode *vnode = _vnode;
|
||||
|
||||
|
||||
+1
-1
@@ -289,7 +289,7 @@ befs_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(befs_inode_cachep, BEFS_I(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache *cachep, void *foo)
|
||||
{
|
||||
struct befs_inode_info *bi = (struct befs_inode_info *) foo;
|
||||
|
||||
|
||||
+1
-1
@@ -244,7 +244,7 @@ static void bfs_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(bfs_inode_cachep, BFS_I(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache *cachep, void *foo)
|
||||
{
|
||||
struct bfs_inode_info *bi = foo;
|
||||
|
||||
|
||||
+1
-1
@@ -465,7 +465,7 @@ static void bdev_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(bdev_cachep, bdi);
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache * cachep, void *foo)
|
||||
{
|
||||
struct bdev_inode *ei = (struct bdev_inode *) foo;
|
||||
struct block_device *bdev = &ei->bdev;
|
||||
|
||||
+1
-1
@@ -704,7 +704,7 @@ const struct file_operations cifs_dir_ops = {
|
||||
};
|
||||
|
||||
static void
|
||||
cifs_init_once(void *inode, struct kmem_cache *cachep, unsigned long flags)
|
||||
cifs_init_once(struct kmem_cache *cachep, void *inode)
|
||||
{
|
||||
struct cifsInodeInfo *cifsi = inode;
|
||||
|
||||
|
||||
+1
-1
@@ -58,7 +58,7 @@ static void coda_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(coda_inode_cachep, ITOC(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache * cachep, void *foo)
|
||||
{
|
||||
struct coda_inode_info *ei = (struct coda_inode_info *) foo;
|
||||
|
||||
|
||||
+2
-2
@@ -611,7 +611,7 @@ static struct file_system_type ecryptfs_fs_type = {
|
||||
* Initializes the ecryptfs_inode_info_cache when it is created
|
||||
*/
|
||||
static void
|
||||
inode_info_init_once(void *vptr, struct kmem_cache *cachep, unsigned long flags)
|
||||
inode_info_init_once(struct kmem_cache *cachep, void *vptr)
|
||||
{
|
||||
struct ecryptfs_inode_info *ei = (struct ecryptfs_inode_info *)vptr;
|
||||
|
||||
@@ -622,7 +622,7 @@ static struct ecryptfs_cache_info {
|
||||
struct kmem_cache **cache;
|
||||
const char *name;
|
||||
size_t size;
|
||||
void (*ctor)(void*, struct kmem_cache *, unsigned long);
|
||||
void (*ctor)(struct kmem_cache *cache, void *obj);
|
||||
} ecryptfs_cache_infos[] = {
|
||||
{
|
||||
.cache = &ecryptfs_auth_tok_list_item_cache,
|
||||
|
||||
+1
-1
@@ -69,7 +69,7 @@ static void efs_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(efs_inode_cachep, INODE_INFO(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache *cachep, void *foo)
|
||||
{
|
||||
struct efs_inode_info *ei = (struct efs_inode_info *) foo;
|
||||
|
||||
|
||||
+1
-1
@@ -157,7 +157,7 @@ static void ext2_destroy_inode(struct inode *inode)
|
||||
kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
|
||||
}
|
||||
|
||||
static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
|
||||
static void init_once(struct kmem_cache * cachep, void *foo)
|
||||
{
|
||||
struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user