mirror of https://github.com/schoebel/mars
28 lines
516 B
C
28 lines
516 B
C
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
|
|
#ifndef MARS_IF_DEVICE_H
|
|
#define MARS_IF_DEVICE_H
|
|
|
|
#define HT_SHIFT 6 //????
|
|
#define MARS_MAX_SEGMENT_SIZE (1U << (9+HT_SHIFT))
|
|
|
|
struct if_device_brick {
|
|
MARS_BRICK(if_device);
|
|
};
|
|
|
|
struct if_device_input {
|
|
MARS_INPUT(if_device);
|
|
struct request_queue *q;
|
|
struct gendisk *disk;
|
|
struct block_device *bdev;
|
|
spinlock_t req_lock;
|
|
struct mars_io_object_layout *mio_layout;
|
|
};
|
|
|
|
struct if_device_output {
|
|
MARS_OUTPUT(if_device);
|
|
};
|
|
|
|
MARS_TYPES(if_device);
|
|
|
|
#endif
|