OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [linux/] [raid/] [linear.h] - Rev 1765

Compare with Previous | Blame | View Log

#ifndef _LINEAR_H
#define _LINEAR_H
 
#include <linux/raid/md.h>
 
struct dev_info {
	kdev_t		dev;
	unsigned long	size;
	unsigned long	offset;
};
 
typedef struct dev_info dev_info_t;
 
struct linear_hash
{
	dev_info_t *dev0, *dev1;
};
 
struct linear_private_data
{
	struct linear_hash	*hash_table;
	dev_info_t		disks[MD_SB_DISKS];
	dev_info_t		*smallest;
	int			nr_zones;
};
 
 
typedef struct linear_private_data linear_conf_t;
 
#define mddev_to_conf(mddev) ((linear_conf_t *) mddev->private)
 
#endif
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.