summaryrefslogtreecommitdiffstats
path: root/drivers/block/linear.h
blob: 1146d8329fae84de2ff3c858a7d502e0ade4cd01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _LINEAR_H
#define _LINEAR_H

struct linear_hash
{
  struct real_dev *dev0, *dev1;
};

struct linear_data
{
  struct linear_hash *hash_table; /* Dynamically allocated */
  struct real_dev *smallest;
  int nr_zones;
};

#endif