mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Now that we've gotten rid of the kmem_zone_t typedef, rename the variables to _cache since that's what they are. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			585 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			585 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (c) 2008-2010, Dave Chinner
 | 
						|
 * All Rights Reserved.
 | 
						|
 */
 | 
						|
#ifndef XFS_ICREATE_ITEM_H
 | 
						|
#define XFS_ICREATE_ITEM_H	1
 | 
						|
 | 
						|
/* in memory log item structure */
 | 
						|
struct xfs_icreate_item {
 | 
						|
	struct xfs_log_item	ic_item;
 | 
						|
	struct xfs_icreate_log	ic_format;
 | 
						|
};
 | 
						|
 | 
						|
extern struct kmem_cache *xfs_icreate_cache;	/* inode create item */
 | 
						|
 | 
						|
void xfs_icreate_log(struct xfs_trans *tp, xfs_agnumber_t agno,
 | 
						|
			xfs_agblock_t agbno, unsigned int count,
 | 
						|
			unsigned int inode_size, xfs_agblock_t length,
 | 
						|
			unsigned int generation);
 | 
						|
 | 
						|
#endif	/* XFS_ICREATE_ITEM_H */
 |