mars/mars_if.c

567 lines
13 KiB
C
Raw Normal View History

2010-06-14 14:27:40 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
/* Interface to a Linux device.
* 1 Input, 0 Outputs.
*/
2010-07-30 05:46:22 +00:00
//#define BRICK_DEBUGGING
//#define MARS_DEBUGGING
2010-12-10 17:40:20 +00:00
//#define LOG
#define REQUEST_MERGING
2010-07-30 05:46:22 +00:00
2010-06-14 14:27:40 +00:00
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/major.h>
#include <linux/genhd.h>
#include <linux/blkdev.h>
#include "mars.h"
///////////////////////// own type definitions ////////////////////////
2011-03-07 10:27:38 +00:00
#include "mars_if.h"
2010-06-14 14:27:40 +00:00
///////////////////////// own static definitions ////////////////////////
static int device_minor = 0;
2010-06-22 13:21:42 +00:00
//////////////// object / aspect constructors / destructors ///////////////
2010-06-14 14:27:40 +00:00
///////////////////////// linux operations ////////////////////////
/* callback
*/
2011-03-07 10:27:38 +00:00
static void _if_endio(struct generic_callback *cb)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *mref_a = cb->cb_private;
2010-11-26 13:45:10 +00:00
struct bio *bio;
struct bio_vec *bvec;
2010-12-10 17:40:20 +00:00
int i, k;
2010-08-04 17:32:04 +00:00
int error;
2010-11-26 13:45:10 +00:00
if (unlikely(!mref_a)) {
MARS_FAT("callback with no mref_a called. something is very wrong here!\n");
return;
}
2010-12-10 17:40:20 +00:00
#if 1
if (mref_a->yyy++ > 0)
MARS_ERR("yyy = %d\n", mref_a->yyy - 1);
#endif
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
for (k = 0; k < mref_a->bio_count; k++) {
bio = mref_a->orig_bio[k];
mref_a->orig_bio[k] = NULL;
if (unlikely(!bio)) {
MARS_FAT("callback with no bio called (k = %d). something is very wrong here!\n", k);
continue;
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
CHECK_ATOMIC(&bio->bi_comp_cnt, 1);
if (!atomic_dec_and_test(&bio->bi_comp_cnt)) {
continue;
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
bio_for_each_segment(bvec, bio, i) {
kunmap(bvec->bv_page);
}
error = mref_a->cb.cb_error;
if (unlikely(error < 0)) {
MARS_ERR("NYI: error=%d RETRY LOGIC %u\n", error, bio->bi_size);
} else { // bio conventions are slightly different...
error = 0;
bio->bi_size = 0;
}
bio_endio(bio, error);
2011-03-07 05:55:10 +00:00
bio_put(bio);
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
/* Kick off plugged mrefs
*/
2011-03-07 10:27:38 +00:00
static void _if_unplug(struct if_input *input)
2010-12-10 17:40:20 +00:00
{
LIST_HEAD(tmp_list);
unsigned long flags;
might_sleep();
down(&input->kick_sem);
traced_lock(&input->req_lock, flags);
if (!list_empty(&input->plug_anchor)) {
// move over the whole list
list_replace_init(&input->plug_anchor, &tmp_list);
2010-08-04 17:32:04 +00:00
}
2010-12-10 17:40:20 +00:00
traced_unlock(&input->req_lock, flags);
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
while (!list_empty(&tmp_list)) {
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *mref_a;
2010-12-15 12:13:18 +00:00
struct mref_object *mref;
2011-03-07 10:27:38 +00:00
mref_a = container_of(tmp_list.next, struct if_mref_aspect, plug_head);
2010-12-10 17:40:20 +00:00
list_del_init(&mref_a->plug_head);
mref = mref_a->object;
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
#if 1
if (mref_a->xxx++ > 0)
MARS_ERR("xxx = %d\n", mref_a->xxx - 1);
#endif
2010-12-15 12:13:18 +00:00
GENERIC_INPUT_CALL(input, mref_io, mref);
GENERIC_INPUT_CALL(input, mref_put, mref);
2010-12-10 17:40:20 +00:00
}
2010-06-14 14:27:40 +00:00
}
2010-11-26 13:45:10 +00:00
/* accept a linux bio, convert to mref and call buf_io() on it.
2010-06-14 14:27:40 +00:00
*/
2011-03-07 10:27:38 +00:00
static int if_make_request(struct request_queue *q, struct bio *bio)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_input *input;
struct if_brick *brick;
2010-12-15 12:13:18 +00:00
struct mref_object *mref = NULL;
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *mref_a;
2010-08-08 14:02:54 +00:00
struct generic_callback *cb;
2010-11-26 13:45:10 +00:00
struct bio_vec *bvec;
int i;
2010-12-10 17:40:20 +00:00
bool assigned = false;
const bool unplug = bio_rw_flagged(bio, BIO_RW_UNPLUG);
//const bool barrier = ((bio->bi_rw & 1) != READ && bio_rw_flagged(bio, BIO_RW_BARRIER));
2010-11-26 13:45:10 +00:00
loff_t pos = ((loff_t)bio->bi_sector) << 9; // TODO: make dynamic
2010-12-10 17:40:20 +00:00
int rw = bio_data_dir(bio);
2010-08-04 17:32:04 +00:00
int error = -ENOSYS;
2010-06-14 14:27:40 +00:00
MARS_DBG("make_request(%d)\n", bio->bi_size);
2010-06-16 13:21:30 +00:00
2010-12-10 17:40:20 +00:00
might_sleep();
2010-08-10 17:39:30 +00:00
input = q->queuedata;
2010-08-04 17:32:04 +00:00
if (unlikely(!input))
goto err;
2010-06-14 14:27:40 +00:00
2010-08-10 17:39:30 +00:00
brick = input->brick;
if (unlikely(!brick))
2010-08-04 17:32:04 +00:00
goto err;
2010-06-14 14:27:40 +00:00
2010-12-10 17:40:20 +00:00
/* Get a reference to the bio.
* Will be released after bio_endio().
*/
atomic_inc(&bio->bi_cnt);
2011-02-23 20:48:06 +00:00
/* FIXME: THIS IS PROVISIONARY (use event instead)
2010-08-10 17:39:30 +00:00
*/
2011-02-23 20:48:06 +00:00
while (unlikely(!brick->power.led_on)) {
msleep(2 * HZ);
2010-08-10 17:39:30 +00:00
}
2010-12-10 17:40:20 +00:00
_CHECK_ATOMIC(&bio->bi_comp_cnt, !=, 0);
atomic_set(&bio->bi_comp_cnt, 0);
#ifdef LOG
{
const unsigned short prio = bio_prio(bio);
const bool sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
const unsigned int ff = bio->bi_rw & REQ_FAILFAST_MASK;
MARS_INF("BIO rw = %lx len = %d prio = %d sync = %d unplug = %d ff = %d\n", bio->bi_rw, bio->bi_size, prio, sync, unplug, ff);
}
#endif
down(&input->kick_sem);
2010-11-26 13:45:10 +00:00
bio_for_each_segment(bvec, bio, i) {
int bv_len = bvec->bv_len;
void *data = kmap(bvec->bv_page);
data += bvec->bv_offset;
while (bv_len > 0) {
2010-12-10 17:40:20 +00:00
struct list_head *tmp;
unsigned long flags;
int len = 0;
mref = NULL;
mref_a = NULL;
#ifdef LOG
MARS_INF("rw = %d i = %d pos = %lld bv_page = %p bv_offset = %d data = %p bv_len = %d\n", rw, i, pos, bvec->bv_page, bvec->bv_offset, data, bv_len);
#endif
#ifdef REQUEST_MERGING
traced_lock(&input->req_lock, flags);
for (tmp = input->plug_anchor.next; tmp != &input->plug_anchor; tmp = tmp->next) {
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *tmp_a;
tmp_a = container_of(tmp, struct if_mref_aspect, plug_head);
2010-12-10 17:40:20 +00:00
len = bv_len;
#ifdef LOG
MARS_INF("bio = %p mref = %p len = %d maxlen = %d\n", bio, mref, len, tmp_a->maxlen);
#endif
if (len > tmp_a->maxlen) {
len = tmp_a->maxlen;
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
if (len <= 0 || tmp_a->bio_count >= MAX_BIO)
continue;
if (tmp_a->object->ref_data + tmp_a->object->ref_len == data && tmp_a->object->ref_rw == rw
&& tmp_a->orig_page == bvec->bv_page) {
mref_a = tmp_a;
mref = tmp_a->object;
2010-11-26 13:45:10 +00:00
mref->ref_len += len;
2010-12-10 17:40:20 +00:00
mref_a->maxlen -= len;
CHECK_ATOMIC(&bio->bi_comp_cnt, 0);
atomic_inc(&bio->bi_comp_cnt);
mref_a->orig_bio[mref_a->bio_count++] = bio;
assigned = true;
#ifdef LOG
MARS_INF("merge bio = %p mref = %p bio_count = %d len = %d ref_len = %d\n", bio, mref, mref_a->bio_count, len, mref->ref_len);
#endif
break;
2010-11-26 13:45:10 +00:00
}
}
2010-12-10 17:40:20 +00:00
traced_unlock(&input->req_lock, flags);
2010-11-26 13:45:10 +00:00
#endif
if (!mref) {
error = -ENOMEM;
2011-03-07 10:27:38 +00:00
mref = if_alloc_mref(&brick->hidden_output, &input->mref_object_layout);
2010-12-10 17:40:20 +00:00
if (unlikely(!mref)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2011-03-07 10:27:38 +00:00
mref_a = if_mref_get_aspect(&brick->hidden_output, mref);
2010-12-10 17:40:20 +00:00
if (unlikely(!mref_a)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
cb = &mref_a->cb;
2011-03-07 10:27:38 +00:00
cb->cb_fn = _if_endio;
2010-11-26 13:45:10 +00:00
cb->cb_private = mref_a;
cb->cb_error = 0;
cb->cb_prev = NULL;
mref->ref_cb = cb;
mref_a->input = input;
mref->ref_rw = mref->ref_may_write = rw;
mref->ref_pos = pos;
2010-12-10 17:40:20 +00:00
mref->ref_len = PAGE_SIZE;
//mref->ref_len = 512;
mref->ref_data = data; // direct IO
2010-12-15 12:13:18 +00:00
error = GENERIC_INPUT_CALL(input, mref_get, mref);
2010-12-10 17:40:20 +00:00
if (unlikely(error < 0)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
CHECK_ATOMIC(&bio->bi_comp_cnt, 0);
atomic_inc(&bio->bi_comp_cnt);
mref_a->orig_page = bvec->bv_page;
mref_a->orig_bio[0] = bio;
mref_a->bio_count = 1;
assigned = true;
len = bv_len;
if (len > mref->ref_len)
len = mref->ref_len;
mref_a->maxlen = mref->ref_len - len;
2010-11-26 13:45:10 +00:00
mref->ref_len = len;
2010-12-10 17:40:20 +00:00
traced_lock(&input->req_lock, flags);
list_add_tail(&mref_a->plug_head, &input->plug_anchor);
traced_unlock(&input->req_lock, flags);
2010-11-26 13:45:10 +00:00
}
pos += len;
data += len;
bv_len -= len;
} // while bv_len > 0
} // foreach bvec
2010-12-10 17:40:20 +00:00
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
error = 0;
2010-06-14 14:27:40 +00:00
err:
2010-12-10 17:40:20 +00:00
2010-11-26 13:45:10 +00:00
if (error < 0) {
MARS_ERR("cannot submit request, status=%d\n", error);
2010-12-10 17:40:20 +00:00
if (assigned) {
//...
} else {
bio_endio(bio, error);
}
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
if (unplug) {
2011-03-07 10:27:38 +00:00
_if_unplug(input);
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
2010-08-04 17:32:04 +00:00
return error;
2010-06-14 14:27:40 +00:00
}
2011-03-07 10:27:38 +00:00
static int if_open(struct block_device *bdev, fmode_t mode)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_input *input = bdev->bd_disk->private_data;
2010-06-14 14:27:40 +00:00
(void)input;
2011-03-07 10:27:38 +00:00
MARS_DBG("if_open()\n");
2010-06-14 14:27:40 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_release(struct gendisk *gd, fmode_t mode)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
MARS_DBG("if_close()\n");
2010-06-14 14:27:40 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static const struct block_device_operations if_blkdev_ops = {
2010-06-14 14:27:40 +00:00
.owner = THIS_MODULE,
2011-03-07 10:27:38 +00:00
.open = if_open,
.release = if_release,
2010-06-14 14:27:40 +00:00
};
////////////////// own brick / input / output operations //////////////////
2011-03-07 10:27:38 +00:00
static void if_unplug(struct request_queue *q)
2010-06-17 16:57:10 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_input *input = q->queuedata;
2010-06-17 16:57:10 +00:00
MARS_DBG("UNPLUG\n");
2010-12-10 17:40:20 +00:00
#ifdef LOG
2010-11-26 13:45:10 +00:00
MARS_INF("UNPLUG\n");
2010-12-10 17:40:20 +00:00
#endif
2010-06-17 16:57:10 +00:00
queue_flag_clear_unlocked(QUEUE_FLAG_PLUGGED, q);
2011-03-07 10:27:38 +00:00
_if_unplug(input);
2010-06-17 16:57:10 +00:00
}
2010-07-23 11:55:18 +00:00
//////////////// object / aspect constructors / destructors ///////////////
2011-03-07 10:27:38 +00:00
static int if_mref_aspect_init_fn(struct generic_aspect *_ini, void *_init_data)
2010-07-23 11:55:18 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *ini = (void*)_ini;
2010-12-10 17:40:20 +00:00
//INIT_LIST_HEAD(&ini->tmp_head);
INIT_LIST_HEAD(&ini->plug_head);
2010-07-23 11:55:18 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static void if_mref_aspect_exit_fn(struct generic_aspect *_ini, void *_init_data)
2010-08-08 09:03:42 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_mref_aspect *ini = (void*)_ini;
2010-12-10 17:40:20 +00:00
//CHECK_HEAD_EMPTY(&ini->tmp_head);
CHECK_HEAD_EMPTY(&ini->plug_head);
2010-08-08 09:03:42 +00:00
}
2011-03-07 10:27:38 +00:00
MARS_MAKE_STATICS(if);
2010-07-23 11:55:18 +00:00
2010-06-14 14:27:40 +00:00
//////////////////////// contructors / destructors ////////////////////////
2011-03-07 10:27:38 +00:00
static int if_brick_construct(struct if_brick *brick)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_output *hidden = &brick->hidden_output;
_if_output_init(brick, hidden, "internal");
2010-06-14 14:27:40 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_brick_destruct(struct if_brick *brick)
2010-06-14 14:27:40 +00:00
{
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_switch(struct if_brick *brick)
2010-06-14 14:27:40 +00:00
{
2011-03-07 10:27:38 +00:00
struct if_input *input = brick->inputs[0];
2010-06-14 14:27:40 +00:00
struct request_queue *q;
struct gendisk *disk;
int minor;
2010-08-26 17:12:30 +00:00
struct mars_info info = {};
unsigned long capacity;
int status;
2010-06-14 14:27:40 +00:00
2011-02-23 20:48:06 +00:00
if (brick->power.button) {
mars_power_led_off((void*)brick, false);
status = GENERIC_INPUT_CALL(input, mars_get_info, &info);
if (status < 0) {
MARS_ERR("cannot get device info, status=%d\n", status);
return status;
}
capacity = info.current_size >> 9; // TODO: make this dynamic
q = blk_alloc_queue(GFP_MARS);
if (!q) {
MARS_ERR("cannot allocate device request queue\n");
return -ENOMEM;
}
q->queuedata = input;
input->q = q;
//MARS_DBG("2\n");
disk = alloc_disk(1);
if (!disk) {
MARS_ERR("cannot allocate gendisk\n");
return -ENOMEM;
}
2010-06-14 14:27:40 +00:00
2011-02-23 20:48:06 +00:00
//MARS_DBG("3\n");
minor = device_minor++; //TODO: protect against races (e.g. atomic_t)
disk->queue = q;
disk->major = MARS_MAJOR; //TODO: make this dynamic for >256 devices
disk->first_minor = minor;
2011-03-07 10:27:38 +00:00
disk->fops = &if_blkdev_ops;
2011-02-23 20:48:06 +00:00
//snprintf(disk->disk_name, sizeof(disk->disk_name), "mars%d", minor);
snprintf(disk->disk_name, sizeof(disk->disk_name), "mars/%s", brick->brick_name);
MARS_DBG("created device name %s\n", disk->disk_name);
disk->private_data = input;
set_capacity(disk, capacity);
2011-03-07 10:27:38 +00:00
blk_queue_make_request(q, if_make_request);
2011-02-23 20:48:06 +00:00
blk_queue_max_segment_size(q, MARS_MAX_SEGMENT_SIZE);
blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2011-03-07 10:27:38 +00:00
q->unplug_fn = if_unplug;
2011-02-23 20:48:06 +00:00
sema_init(&input->kick_sem, 1);
spin_lock_init(&input->req_lock);
q->queue_lock = &input->req_lock; // needed!
//blk_queue_ordered(q, QUEUE_ORDERED_DRAIN, NULL);//???
//MARS_DBG("4\n");
input->bdev = bdget(MKDEV(disk->major, minor));
/* we have no partitions. we contain only ourselves. */
input->bdev->bd_contains = input->bdev;
2010-06-14 14:27:40 +00:00
#if 0 // ???
2011-02-23 20:48:06 +00:00
q->backing_dev_info.congested_fn = mars_congested;
q->backing_dev_info.congested_data = input;
2010-06-14 14:27:40 +00:00
#endif
#if 0 // ???
2011-02-23 20:48:06 +00:00
blk_queue_merge_bvec(q, mars_merge_bvec);
2010-06-14 14:27:40 +00:00
#endif
2011-02-23 20:48:06 +00:00
INIT_LIST_HEAD(&input->plug_anchor);
// point of no return
//MARS_DBG("99999\n");
add_disk(disk);
input->disk = disk;
//set_device_ro(input->bdev, 0); // TODO: implement modes
mars_power_led_on((void*)brick, true);
} else {
mars_power_led_on((void*)brick, false);
if (input->bdev) {
bdput(input->bdev);
input->bdev = NULL;
}
disk = input->disk;
if (disk) {
q = disk->queue;
del_gendisk(input->disk);
put_disk(input->disk);
input->disk = NULL;
if (q) {
blk_cleanup_queue(q);
}
}
//........
mars_power_led_off((void*)brick, true);
}
2010-08-26 17:12:30 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_input_construct(struct if_input *input)
2010-08-26 17:12:30 +00:00
{
2010-06-14 14:27:40 +00:00
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_input_destruct(struct if_input *input)
2010-06-14 14:27:40 +00:00
{
if (input->bdev)
bdput(input->bdev);
if (input->disk) {
del_gendisk(input->disk);
//put_disk(input->disk);
}
if (input->q)
blk_cleanup_queue(input->q);
return 0;
}
2011-03-07 10:27:38 +00:00
static int if_output_construct(struct if_output *output)
2010-08-10 17:39:30 +00:00
{
return 0;
}
2010-06-14 14:27:40 +00:00
///////////////////////// static structs ////////////////////////
2011-03-07 10:27:38 +00:00
static struct if_brick_ops if_brick_ops = {
.brick_switch = if_switch,
2010-06-14 14:27:40 +00:00
};
2011-03-07 10:27:38 +00:00
static struct if_output_ops if_output_ops = {
.make_object_layout = if_make_object_layout,
2010-08-10 17:39:30 +00:00
};
2011-03-07 10:27:38 +00:00
const struct if_input_type if_input_type = {
.type_name = "if_input",
.input_size = sizeof(struct if_input),
.input_construct = &if_input_construct,
.input_destruct = &if_input_destruct,
2010-06-14 14:27:40 +00:00
};
2011-03-07 10:27:38 +00:00
static const struct if_input_type *if_input_types[] = {
&if_input_type,
2010-06-14 14:27:40 +00:00
};
2011-03-07 10:27:38 +00:00
const struct if_output_type if_output_type = {
.type_name = "if_output",
.output_size = sizeof(struct if_output),
.master_ops = &if_output_ops,
.output_construct = &if_output_construct,
.aspect_types = if_aspect_types,
2010-08-10 17:39:30 +00:00
.layout_code = {
2010-12-15 12:13:18 +00:00
[BRICK_OBJ_MREF] = LAYOUT_ALL,
2010-08-10 17:39:30 +00:00
}
};
2011-03-07 10:27:38 +00:00
const struct if_brick_type if_brick_type = {
.type_name = "if_brick",
.brick_size = sizeof(struct if_brick),
2010-06-14 14:27:40 +00:00
.max_inputs = 1,
.max_outputs = 0,
2011-03-07 10:27:38 +00:00
.master_ops = &if_brick_ops,
.default_input_types = if_input_types,
.brick_construct = &if_brick_construct,
.brick_destruct = &if_brick_destruct,
2010-06-14 14:27:40 +00:00
};
2011-03-07 10:27:38 +00:00
EXPORT_SYMBOL_GPL(if_brick_type);
2010-06-14 14:27:40 +00:00
////////////////// module init stuff /////////////////////////
2011-03-07 10:27:38 +00:00
static void __exit exit_if(void)
2010-06-14 14:27:40 +00:00
{
int status;
2011-03-07 10:27:38 +00:00
MARS_INF("exit_if()\n");
status = if_unregister_brick_type();
2011-03-03 18:23:34 +00:00
unregister_blkdev(MARS_MAJOR, "mars");
2010-06-14 14:27:40 +00:00
}
2011-03-07 10:27:38 +00:00
static int __init init_if(void)
2010-06-14 14:27:40 +00:00
{
int status;
2010-08-04 17:32:04 +00:00
2011-03-07 10:27:38 +00:00
(void)if_aspect_types; // not used, shut up gcc
2010-08-04 17:32:04 +00:00
2011-03-07 10:27:38 +00:00
MARS_INF("init_if()\n");
2011-03-03 18:23:34 +00:00
status = register_blkdev(MARS_MAJOR, "mars");
2010-06-14 14:27:40 +00:00
if (status)
return status;
2011-03-07 10:27:38 +00:00
status = if_register_brick_type();
2010-06-14 14:27:40 +00:00
if (status)
goto err_device;
return status;
err_device:
2011-03-07 10:27:38 +00:00
MARS_ERR("init_if() status=%d\n", status);
exit_if();
2010-06-14 14:27:40 +00:00
return status;
}
2011-03-07 10:27:38 +00:00
MODULE_DESCRIPTION("MARS if");
2010-06-14 14:27:40 +00:00
MODULE_AUTHOR("Thomas Schoebel-Theuer <tst@1und1.de>");
MODULE_LICENSE("GPL");
2011-03-07 10:27:38 +00:00
module_init(init_if);
module_exit(exit_if);