|
Last change
on this file since 76 was
76,
checked in by megakiss, 10 years ago
|
|
1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함
|
-
Property svn:executable set to
*
|
|
File size:
425 bytes
|
| Line | |
|---|
| 1 | #ifndef _LINEAR_H |
|---|
| 2 | #define _LINEAR_H |
|---|
| 3 | |
|---|
| 4 | #include <linux/raid/md.h> |
|---|
| 5 | |
|---|
| 6 | struct dev_info { |
|---|
| 7 | mdk_rdev_t *rdev; |
|---|
| 8 | sector_t size; |
|---|
| 9 | sector_t offset; |
|---|
| 10 | }; |
|---|
| 11 | |
|---|
| 12 | typedef struct dev_info dev_info_t; |
|---|
| 13 | |
|---|
| 14 | struct linear_private_data |
|---|
| 15 | { |
|---|
| 16 | dev_info_t **hash_table; |
|---|
| 17 | dev_info_t *smallest; |
|---|
| 18 | int nr_zones; |
|---|
| 19 | dev_info_t disks[0]; |
|---|
| 20 | }; |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | typedef struct linear_private_data linear_conf_t; |
|---|
| 24 | |
|---|
| 25 | #define mddev_to_conf(mddev) ((linear_conf_t *) mddev->private) |
|---|
| 26 | |
|---|
| 27 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.