mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _LINEAR_H
 | 
						|
#define _LINEAR_H
 | 
						|
 | 
						|
struct dev_info {
 | 
						|
	struct md_rdev	*rdev;
 | 
						|
	sector_t	end_sector;
 | 
						|
};
 | 
						|
 | 
						|
struct linear_conf
 | 
						|
{
 | 
						|
	struct rcu_head		rcu;
 | 
						|
	sector_t		array_sectors;
 | 
						|
	struct dev_info		disks[0];
 | 
						|
};
 | 
						|
#endif
 |