mars/mars.h

213 lines
5.9 KiB
C

// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_H
#define MARS_H
#include <linux/list.h>
#include <asm/spinlock.h>
#include <asm/atomic.h>
#define MARS_FATAL "MARS_FATAL " __BASE_FILE__ ": "
#define MARS_ERROR "MARS_ERROR " __BASE_FILE__ ": "
#define MARS_INFO "MARS_INFO " __BASE_FILE__ ": "
#define MARS_DEBUG "MARS_DEBUG " __BASE_FILE__ ": "
#define MARS_FAT(fmt, args...) printk(MARS_FATAL "%s(): " fmt, __FUNCTION__, ##args)
#define MARS_ERR(fmt, args...) printk(MARS_ERROR "%s(): " fmt, __FUNCTION__, ##args)
#define MARS_INF(fmt, args...) printk(MARS_INFO "%s(): " fmt, __FUNCTION__, ##args)
#ifdef MARS_DEBUGGING
#define MARS_DBG(fmt, args...) printk(MARS_DEBUG "%s(): " fmt, __FUNCTION__, ##args)
#else
#define MARS_DBG(args...) /**/
#endif
#define BRICK_OBJ_MARS_REF 0
#define BRICK_OBJ_NR 1
#define GFP_MARS GFP_NOIO
#include "brick.h"
/////////////////////////////////////////////////////////////////////////
// MARS-specific definitions
// object stuff
/* mars_ref */
#define MARS_REF_UPTODATE 1
#define MARS_REF_READING 2
#define MARS_REF_WRITING 4
extern const struct generic_object_type mars_ref_type;
struct mars_ref_aspect {
GENERIC_ASPECT(mars_ref);
};
struct mars_ref_aspect_layout {
GENERIC_ASPECT_LAYOUT(mars_ref);
};
struct mars_ref_object_layout {
GENERIC_OBJECT_LAYOUT(mars_ref);
};
#define MARS_REF_OBJECT(PREFIX) \
GENERIC_OBJECT(PREFIX); \
/* supplied by caller */ \
loff_t ref_pos; \
int ref_len; \
int ref_may_write; \
/* maintained by the ref implementation, readable for callers */ \
struct bio *orig_bio; \
void *ref_data; \
int ref_flags; \
int ref_rw; \
/* maintained by the ref implementation, incrementable for \
* callers (but not decrementable! use ref_put()) */ \
atomic_t ref_count; \
/* callback part */ \
int cb_error; \
void *cb_private; \
void (*cb_ref_endio)(struct mars_ref_object *mref); \
struct mars_ref_object {
MARS_REF_OBJECT(mars_ref);
};
// internal helper structs
struct mars_info {
loff_t current_size;
struct file *backing_file;
};
// brick stuff
#define MARS_BRICK(PREFIX) \
GENERIC_BRICK(PREFIX); \
struct mars_brick {
MARS_BRICK(mars);
};
#define MARS_INPUT(PREFIX) \
GENERIC_INPUT(PREFIX); \
struct mars_input {
MARS_INPUT(mars);
};
#define MARS_OUTPUT(PREFIX) \
GENERIC_OUTPUT(PREFIX); \
struct mars_output {
MARS_OUTPUT(mars);
};
#define MARS_BRICK_OPS(PREFIX) \
GENERIC_BRICK_OPS(PREFIX); \
int (*mars_dummy_op)(int); \
#define MARS_OUTPUT_OPS(PREFIX) \
GENERIC_OUTPUT_OPS(PREFIX); \
int (*mars_get_info)(struct PREFIX##_output *output, struct mars_info *info); \
/* mars_ref */ \
int (*mars_ref_get)(struct PREFIX##_output *output, struct mars_ref_object *mref); \
void (*mars_ref_io)(struct PREFIX##_output *output, struct mars_ref_object *mref, int rw); \
void (*mars_ref_put)(struct PREFIX##_output *output, struct mars_ref_object *mref); \
// all non-extendable types
#define _MARS_TYPES(BRICK) \
\
struct BRICK##_brick_ops { \
MARS_BRICK_OPS(BRICK); \
}; \
\
struct BRICK##_output_ops { \
MARS_OUTPUT_OPS(BRICK); \
}; \
\
struct BRICK##_brick_type { \
GENERIC_BRICK_TYPE(BRICK); \
}; \
\
struct BRICK##_input_type { \
GENERIC_INPUT_TYPE(BRICK); \
}; \
\
struct BRICK##_output_type { \
GENERIC_OUTPUT_TYPE(BRICK); \
}; \
\
GENERIC_MAKE_FUNCTIONS(BRICK); \
GENERIC_MAKE_CONNECT(BRICK,BRICK); \
#define MARS_TYPES(BRICK) \
\
_MARS_TYPES(BRICK) \
\
struct BRICK##_object_layout; \
\
GENERIC_MAKE_CONNECT(generic,BRICK); \
GENERIC_OBJECT_LAYOUT_FUNCTIONS(BRICK); \
GENERIC_ASPECT_LAYOUT_FUNCTIONS(BRICK,mars_ref); \
GENERIC_ASPECT_FUNCTIONS(BRICK,mars_ref); \
// instantiate all mars-specific functions
GENERIC_OBJECT_FUNCTIONS(mars_ref);
/////////////////////////////////////////////////////////////////////////
// MARS-specific helper functions
#define MARS_MAKE_STATICS(BRICK) \
\
int BRICK##_brick_nr = -EEXIST; \
EXPORT_SYMBOL_GPL(BRICK##_brick_nr); \
\
static const struct generic_aspect_type BRICK##_mars_ref_aspect_type = { \
.aspect_type_name = #BRICK "_mars_ref_aspect_type", \
.object_type = &mars_ref_type, \
.aspect_size = sizeof(struct BRICK##_mars_ref_aspect), \
.init_fn = BRICK##_mars_ref_aspect_init_fn, \
}; \
\
static const struct generic_aspect_type *BRICK##_aspect_types[BRICK_OBJ_NR] = { \
[BRICK_OBJ_MARS_REF] = &BRICK##_mars_ref_aspect_type, \
}; \
#define _CHECK_SPIN(spinlock,OP,minval) \
do { \
int test = atomic_read(spinlock); \
if (test OP (minval)) { \
atomic_set(spinlock, minval); \
MARS_ERR("line %d spinlock " #spinlock " " #OP " " #minval "\n", __LINE__); \
} \
} while (0)
#define CHECK_SPIN(spinlock,minval) \
_CHECK_SPIN(spinlock, <, minval)
static inline void mars_ref_attach_bio(struct mars_ref_object *mref, struct bio *bio)
{
int test;
if (unlikely(mref->orig_bio)) {
MARS_ERR("attaching a bio twice!\n");
}
test = atomic_read(&mref->ref_count);
if (unlikely(test != 0)) {
MARS_ERR("bad ref_count %d\n", test);
}
mref->orig_bio = bio;
mref->ref_pos = -1;
atomic_set(&mref->ref_count, 1);
}
#endif