mars/mars.h

509 lines
15 KiB
C
Raw Normal View History

2010-06-14 14:27:40 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_H
#define MARS_H
2011-02-23 20:48:06 +00:00
#include <linux/semaphore.h>
2010-06-14 14:27:40 +00:00
2011-03-30 12:02:50 +00:00
//#define MARS_TRACING // write runtime trace data to /mars/trace.csv
2011-03-24 16:05:46 +00:00
2011-03-22 14:36:26 +00:00
/////////////////////////////////////////////////////////////////////////
2011-03-27 15:18:38 +00:00
// include the generic brick infrastructure
2011-03-23 17:58:02 +00:00
#ifdef BRICK_H
#error "brick.h must not be already included - please reorganize your includes"
#endif
2011-03-22 14:36:26 +00:00
#define BRICK_OBJ_MREF 0
#define BRICK_OBJ_MAX 1
#define BRICK_DEPTH_MAX 128
#include "brick.h"
2011-03-24 16:05:46 +00:00
#define GFP_MARS GFP_NOIO
2011-03-22 14:36:26 +00:00
/////////////////////////////////////////////////////////////////////////
2011-03-23 17:58:02 +00:00
// MARS-specific debugging helpers
2011-03-22 14:36:26 +00:00
2010-12-10 17:40:20 +00:00
#define MARS_DELAY /**/
//#define MARS_DELAY msleep(20000)
2010-08-20 10:58:24 +00:00
2011-03-24 16:05:46 +00:00
#define MARS_FATAL "MARS_FATAL "
#define MARS_ERROR "MARS_ERROR "
#define MARS_WARNING "MARS_WARN "
#define MARS_INFO "MARS_INFO "
#define MARS_DEBUG "MARS_DEBUG "
2011-03-22 14:36:26 +00:00
2011-02-23 20:48:06 +00:00
#define _MARS_FMT(fmt) "[%s] " __BASE_FILE__ " %d %s(): " fmt, current->comm, __LINE__, __FUNCTION__
//#define _MARS_FMT(fmt) _BRICK_FMT(fmt)
2010-06-14 14:27:40 +00:00
2011-04-15 10:13:22 +00:00
#define _MARS_MSG(PREFIX, fmt, args...) do { say(PREFIX _MARS_FMT(fmt), ##args); MARS_DELAY; } while (0)
2011-03-24 16:05:46 +00:00
#define MARS_FAT(fmt, args...) _MARS_MSG(MARS_FATAL, fmt, ##args)
#define MARS_ERR(fmt, args...) _MARS_MSG(MARS_ERROR, fmt, ##args)
#define MARS_WRN(fmt, args...) _MARS_MSG(MARS_WARNING, fmt, ##args)
#define MARS_INF(fmt, args...) _MARS_MSG(MARS_INFO, fmt, ##args)
2011-03-18 13:15:40 +00:00
2010-07-23 11:55:18 +00:00
#ifdef MARS_DEBUGGING
2011-03-24 16:05:46 +00:00
#define MARS_DBG(fmt, args...) _MARS_MSG(MARS_DEBUG, fmt, ##args)
2010-07-23 11:55:18 +00:00
#else
2010-06-16 13:21:30 +00:00
#define MARS_DBG(args...) /**/
2010-07-23 11:55:18 +00:00
#endif
2011-03-18 13:15:40 +00:00
2011-02-23 20:48:06 +00:00
#ifdef IO_DEBUGGING
2011-03-24 16:05:46 +00:00
#define MARS_IO(fmt, args...) _MARS_MSG(MARS_DEBUG, fmt, ##args)
2011-02-23 20:48:06 +00:00
#else
#define MARS_IO(args...) /*empty*/
#endif
2011-03-18 13:15:40 +00:00
2011-03-02 09:30:56 +00:00
#ifdef STAT_DEBUGGING
#define MARS_STAT MARS_INF
#else
2011-03-18 13:15:40 +00:00
#define MARS_STAT(args...) /*empty*/
2011-03-02 09:30:56 +00:00
#endif
2010-06-14 14:27:40 +00:00
/////////////////////////////////////////////////////////////////////////
// MARS-specific definitions
2011-03-10 11:40:06 +00:00
#define MARS_PRIO_HIGH 0
#define MARS_PRIO_LOW 1
2010-06-20 18:55:34 +00:00
// object stuff
2010-12-15 12:13:18 +00:00
/* mref */
2010-07-23 11:55:18 +00:00
2010-12-15 12:13:18 +00:00
#define MREF_UPTODATE 1
#define MREF_READING 2
#define MREF_WRITING 4
2010-07-05 15:56:58 +00:00
2010-12-15 12:13:18 +00:00
extern const struct generic_object_type mref_type;
2010-07-05 15:56:58 +00:00
2010-12-15 12:13:18 +00:00
struct mref_aspect {
GENERIC_ASPECT(mref);
2010-07-05 15:56:58 +00:00
};
2010-12-15 12:13:18 +00:00
struct mref_aspect_layout {
GENERIC_ASPECT_LAYOUT(mref);
2010-07-05 15:56:58 +00:00
};
2010-12-15 12:13:18 +00:00
struct mref_object_layout {
GENERIC_OBJECT_LAYOUT(mref);
2010-07-05 15:56:58 +00:00
};
2011-03-27 15:18:38 +00:00
#ifdef MARS_TRACING
2011-03-29 14:40:40 +00:00
extern unsigned long long start_trace_clock;
2011-03-27 15:18:38 +00:00
#define MAX_TRACES 16
#define TRACING_INFO \
int ref_traces; \
2011-03-29 14:40:40 +00:00
unsigned long long ref_trace_stamp[MAX_TRACES]; \
const char *ref_trace_info[MAX_TRACES];
2011-03-27 15:18:38 +00:00
extern void _mars_log(char *buf, int len);
extern void mars_log(const char *fmt, ...);
extern void mars_trace(struct mref_object *mref, const char *info);
extern void mars_log_trace(struct mref_object *mref);
#else
#define TRACING_INFO /*empty*/
#define _mars_log(buf,len) /*empty*/
#define mars_log(fmt...) /*empty*/
#define mars_trace(mref,info) /*empty*/
#define mars_log_trace(mref) /*empty*/
#endif
2010-12-15 12:13:18 +00:00
#define MREF_OBJECT(PREFIX) \
2010-07-23 11:55:18 +00:00
GENERIC_OBJECT(PREFIX); \
2010-08-02 16:31:10 +00:00
/* supplied by caller */ \
2011-03-10 11:40:06 +00:00
void *ref_data; /* preset to NULL for buffered IO */ \
2010-08-05 15:54:48 +00:00
loff_t ref_pos; \
int ref_len; \
int ref_may_write; \
2011-03-10 11:40:06 +00:00
int ref_prio; \
2011-03-07 10:27:38 +00:00
int ref_timeout; \
2010-08-05 15:54:48 +00:00
/* maintained by the ref implementation, readable for callers */ \
2011-03-18 13:15:40 +00:00
loff_t ref_total_size; /* just for info, need not be implemented */ \
2010-08-05 15:54:48 +00:00
int ref_flags; \
int ref_rw; \
2011-02-23 20:48:06 +00:00
int ref_id; /* not mandatory; may be used for identification */ \
2011-03-24 16:05:46 +00:00
bool ref_skip_sync; /* skip sync for this particular mref */ \
2010-08-05 15:54:48 +00:00
/* maintained by the ref implementation, incrementable for \
* callers (but not decrementable! use ref_put()) */ \
atomic_t ref_count; \
2010-07-30 11:50:20 +00:00
/* callback part */ \
2010-08-08 14:02:54 +00:00
struct generic_callback *ref_cb; \
2010-12-15 11:58:22 +00:00
struct generic_callback _ref_cb; \
2011-03-27 15:18:38 +00:00
TRACING_INFO;
2010-07-23 11:55:18 +00:00
2010-12-15 12:13:18 +00:00
struct mref_object {
MREF_OBJECT(mref);
2010-07-23 11:55:18 +00:00
};
2010-06-20 18:55:34 +00:00
2010-07-07 14:09:16 +00:00
// internal helper structs
struct mars_info {
loff_t current_size;
2010-08-23 05:06:06 +00:00
int transfer_order;
int transfer_size;
2010-07-07 14:09:16 +00:00
struct file *backing_file;
};
2010-06-20 18:55:34 +00:00
// brick stuff
2010-06-28 05:53:46 +00:00
#define MARS_BRICK(PREFIX) \
GENERIC_BRICK(PREFIX); \
2011-03-01 09:34:36 +00:00
struct list_head global_brick_link; \
struct list_head dent_brick_link; \
2011-02-23 20:48:06 +00:00
const char *brick_path; \
struct mars_global *global; \
2011-03-01 18:00:14 +00:00
int status_level; \
2010-06-14 14:27:40 +00:00
struct mars_brick {
MARS_BRICK(mars);
};
2010-06-28 05:53:46 +00:00
#define MARS_INPUT(PREFIX) \
GENERIC_INPUT(PREFIX); \
2010-06-14 14:27:40 +00:00
struct mars_input {
MARS_INPUT(mars);
};
2010-06-28 05:53:46 +00:00
#define MARS_OUTPUT(PREFIX) \
GENERIC_OUTPUT(PREFIX); \
2010-06-14 14:27:40 +00:00
struct mars_output {
MARS_OUTPUT(mars);
};
2010-06-28 05:53:46 +00:00
#define MARS_BRICK_OPS(PREFIX) \
GENERIC_BRICK_OPS(PREFIX); \
2011-03-31 16:16:00 +00:00
char *(*brick_statistics)(struct PREFIX##_brick *brick, int verbose); \
void (*reset_statistics)(struct PREFIX##_brick *brick); \
2010-06-28 05:53:46 +00:00
#define MARS_OUTPUT_OPS(PREFIX) \
GENERIC_OUTPUT_OPS(PREFIX); \
2010-08-03 09:38:12 +00:00
int (*mars_get_info)(struct PREFIX##_output *output, struct mars_info *info); \
2010-12-15 12:13:18 +00:00
/* mref */ \
int (*mref_get)(struct PREFIX##_output *output, struct mref_object *mref); \
void (*mref_io)(struct PREFIX##_output *output, struct mref_object *mref); \
void (*mref_put)(struct PREFIX##_output *output, struct mref_object *mref); \
2010-06-14 14:27:40 +00:00
// all non-extendable types
2010-07-30 11:50:20 +00:00
#define _MARS_TYPES(BRICK) \
\
2010-08-04 22:38:48 +00:00
struct BRICK##_brick_ops { \
MARS_BRICK_OPS(BRICK); \
}; \
\
2010-07-30 11:50:20 +00:00
struct BRICK##_output_ops { \
2010-08-04 22:38:48 +00:00
MARS_OUTPUT_OPS(BRICK); \
}; \
2010-06-28 05:53:46 +00:00
\
2010-08-04 22:38:48 +00:00
struct BRICK##_brick_type { \
GENERIC_BRICK_TYPE(BRICK); \
2010-06-28 05:53:46 +00:00
}; \
\
2010-07-30 11:50:20 +00:00
struct BRICK##_input_type { \
2010-08-04 22:38:48 +00:00
GENERIC_INPUT_TYPE(BRICK); \
2010-06-28 05:53:46 +00:00
}; \
\
2010-07-30 11:50:20 +00:00
struct BRICK##_output_type { \
2010-08-04 22:38:48 +00:00
GENERIC_OUTPUT_TYPE(BRICK); \
2010-06-28 05:53:46 +00:00
}; \
2010-08-04 22:38:48 +00:00
\
2010-08-08 14:02:54 +00:00
struct BRICK##_callback { \
GENERIC_CALLBACK(BRICK); \
}; \
\
2010-07-30 11:50:20 +00:00
GENERIC_MAKE_FUNCTIONS(BRICK); \
GENERIC_MAKE_CONNECT(BRICK,BRICK); \
2010-06-28 05:53:46 +00:00
2010-07-23 11:55:18 +00:00
2010-07-30 11:50:20 +00:00
#define MARS_TYPES(BRICK) \
\
_MARS_TYPES(BRICK) \
\
2010-08-01 20:21:18 +00:00
struct BRICK##_object_layout; \
\
2010-07-30 11:50:20 +00:00
GENERIC_MAKE_CONNECT(generic,BRICK); \
2010-08-01 20:21:18 +00:00
GENERIC_OBJECT_LAYOUT_FUNCTIONS(BRICK); \
2010-12-15 12:13:18 +00:00
GENERIC_ASPECT_LAYOUT_FUNCTIONS(BRICK,mref); \
GENERIC_ASPECT_FUNCTIONS(BRICK,mref); \
2010-07-23 11:55:18 +00:00
// instantiate all mars-specific functions
2010-12-15 12:13:18 +00:00
GENERIC_OBJECT_FUNCTIONS(mref);
2010-07-23 11:55:18 +00:00
2010-12-15 11:58:22 +00:00
// instantiate a pseudo base-class "mars"
_MARS_TYPES(mars);
GENERIC_OBJECT_LAYOUT_FUNCTIONS(mars);
2010-12-15 12:13:18 +00:00
GENERIC_ASPECT_FUNCTIONS(mars,mref);
2010-12-15 11:58:22 +00:00
2010-06-14 14:27:40 +00:00
/////////////////////////////////////////////////////////////////////////
2011-04-21 16:03:04 +00:00
// MARS-specific memory allocation
2011-05-13 11:19:28 +00:00
extern void *mars_alloc(loff_t pos, int len);
extern void mars_free(void *data, int len);
2011-04-21 16:03:04 +00:00
extern struct page *mars_iomap(void *data, int *offset, int *len);
/////////////////////////////////////////////////////////////////////////
2010-12-15 11:58:22 +00:00
// MARS-specific helpers
2010-06-14 14:27:40 +00:00
2010-07-30 11:50:20 +00:00
#define MARS_MAKE_STATICS(BRICK) \
2010-07-23 11:55:18 +00:00
\
2010-07-30 11:50:20 +00:00
int BRICK##_brick_nr = -EEXIST; \
EXPORT_SYMBOL_GPL(BRICK##_brick_nr); \
2010-07-23 11:55:18 +00:00
\
2010-12-15 12:13:18 +00:00
static const struct generic_aspect_type BRICK##_mref_aspect_type = { \
.aspect_type_name = #BRICK "_mref_aspect_type", \
.object_type = &mref_type, \
.aspect_size = sizeof(struct BRICK##_mref_aspect), \
.init_fn = BRICK##_mref_aspect_init_fn, \
.exit_fn = BRICK##_mref_aspect_exit_fn, \
2010-07-23 11:55:18 +00:00
}; \
\
2011-03-22 14:36:26 +00:00
static const struct generic_aspect_type *BRICK##_aspect_types[BRICK_OBJ_MAX] = { \
2010-12-15 12:13:18 +00:00
[BRICK_OBJ_MREF] = &BRICK##_mref_aspect_type, \
2010-07-23 11:55:18 +00:00
}; \
2010-07-30 11:50:20 +00:00
2010-08-08 09:03:42 +00:00
#define _CHECK_ATOMIC(atom,OP,minval) \
2010-08-05 15:54:48 +00:00
do { \
2011-04-12 15:31:08 +00:00
int __test = atomic_read(atom); \
if (__test OP (minval)) { \
2010-08-08 09:03:42 +00:00
atomic_set(atom, minval); \
2011-04-12 15:31:08 +00:00
MARS_ERR("%d: atomic " #atom " " #OP " " #minval " (%d)\n", __LINE__, __test); \
2010-08-05 15:54:48 +00:00
} \
} while (0)
2010-08-08 09:03:42 +00:00
#define CHECK_ATOMIC(atom,minval) \
_CHECK_ATOMIC(atom, <, minval)
2010-08-05 15:54:48 +00:00
2010-08-08 09:03:42 +00:00
#define CHECK_HEAD_EMPTY(head) \
2010-08-20 10:58:24 +00:00
if (unlikely(!list_empty(head))) { \
2011-04-12 15:31:08 +00:00
list_del_init(head); \
2010-08-27 07:20:26 +00:00
MARS_ERR("%d: list_head " #head " (%p) not empty\n", __LINE__, head); \
2010-08-08 09:03:42 +00:00
} \
2010-08-23 05:06:06 +00:00
#define CHECK_PTR(ptr,label) \
if (unlikely(!(ptr))) { \
2010-08-27 07:20:26 +00:00
MARS_FAT("%d: ptr " #ptr " is NULL\n", __LINE__); \
2010-08-23 05:06:06 +00:00
goto label; \
}
#define _CHECK(ptr,label) \
if (unlikely(!(ptr))) { \
2010-08-27 07:20:26 +00:00
MARS_FAT("%d: condition " #ptr " is VIOLATED\n", __LINE__); \
2010-08-23 05:06:06 +00:00
goto label; \
}
2011-02-23 20:48:06 +00:00
extern const struct meta mars_info_meta[];
extern const struct meta mars_mref_meta[];
2011-05-13 11:19:28 +00:00
extern int mars_digest_size;
extern void mars_digest(void *digest, void *data, int len);
2011-02-23 20:48:06 +00:00
/////////////////////////////////////////////////////////////////////////
extern struct mars_global *mars_global;
2011-03-22 14:36:26 +00:00
extern void _mars_trigger(void);
#define mars_trigger() do { MARS_INF("trigger...\n"); _mars_trigger(); } while (0)
2011-03-23 17:58:02 +00:00
extern int mars_power_button(struct mars_brick *brick, bool val, bool force_off);
2011-02-23 20:48:06 +00:00
extern void mars_power_led_on(struct mars_brick *brick, bool val);
extern void mars_power_led_off(struct mars_brick *brick, bool val);
2011-03-23 17:58:02 +00:00
extern int mars_power_button_recursive(struct mars_brick *brick, bool val, bool force_off, int timeout);
2011-02-27 14:17:58 +00:00
2011-02-23 20:48:06 +00:00
/////////////////////////////////////////////////////////////////////////
#ifdef _STRATEGY // call this only in strategy bricks, never in ordinary bricks
#define MARS_ARGV_MAX 4
2011-03-04 15:14:20 +00:00
#define MARS_PATH_MAX 128
2011-02-23 20:48:06 +00:00
extern char *my_id(void);
#define MARS_DENT(TYPE) \
2011-03-01 09:34:36 +00:00
struct list_head dent_link; \
struct list_head brick_list; \
2011-02-23 20:48:06 +00:00
struct TYPE *d_parent; \
char *d_argv[MARS_ARGV_MAX]; /* for internal use, will be automatically deallocated*/ \
char *d_args; /* ditto uninterpreted */ \
char *d_name; /* current path component */ \
char *d_rest; /* some "meaningful" rest of d_name*/ \
char *d_path; /* full absolute path */ \
int d_namelen; \
int d_pathlen; \
int d_depth; \
unsigned int d_type; /* from readdir() => often DT_UNKNOWN => don't rely on it, use new_stat.mode instead */ \
int d_class; /* for pre-grouping order */ \
int d_serial; /* for pre-grouping order */ \
int d_version; /* dynamic programming per call of mars_ent_work() */ \
2011-02-27 14:17:58 +00:00
char d_once_error; \
2011-02-23 20:48:06 +00:00
struct kstat new_stat; \
struct kstat old_stat; \
char *new_link; \
char *old_link; \
2011-03-01 09:34:36 +00:00
struct mars_global *d_global; \
2011-03-22 14:36:26 +00:00
int d_logfile_serial; \
2011-02-23 20:48:06 +00:00
void *d_private;
struct mars_dent {
MARS_DENT(mars_dent);
};
extern const struct meta mars_timespec_meta[];
extern const struct meta mars_kstat_meta[];
extern const struct meta mars_dent_meta[];
struct mars_global {
2011-02-28 18:00:32 +00:00
struct semaphore mutex;
struct generic_switch global_power;
2011-02-23 20:48:06 +00:00
struct list_head dent_anchor;
struct list_head brick_anchor;
volatile bool main_trigger;
wait_queue_head_t main_event;
//void *private;
};
2011-03-23 17:58:02 +00:00
typedef int (*mars_dent_checker)(struct mars_dent *parent, const char *name, int namlen, unsigned int d_type, int *prefix, int *serial);
2011-02-23 20:48:06 +00:00
typedef int (*mars_dent_worker)(struct mars_global *global, struct mars_dent *dent, bool direction);
extern int mars_dent_work(struct mars_global *global, char *dirname, int allocsize, mars_dent_checker checker, mars_dent_worker worker, void *buf, int maxdepth);
extern struct mars_dent *_mars_find_dent(struct mars_global *global, const char *path);
extern struct mars_dent *mars_find_dent(struct mars_global *global, const char *path);
2011-03-01 09:34:36 +00:00
extern void mars_kill_dent(struct mars_dent *dent);
extern void mars_free_dent(struct mars_dent *dent);
extern void mars_free_dent_all(struct list_head *anchor);
2011-02-23 20:48:06 +00:00
2011-03-01 18:00:14 +00:00
// low-level brick instantiation
2011-02-28 18:00:32 +00:00
2011-02-23 20:48:06 +00:00
extern struct mars_brick *mars_find_brick(struct mars_global *global, const void *brick_type, const char *path);
2011-03-01 09:34:36 +00:00
extern struct mars_brick *mars_make_brick(struct mars_global *global, struct mars_dent *belongs, const void *_brick_type, const char *path, const char *name);
2011-02-28 18:00:32 +00:00
extern int mars_free_brick(struct mars_brick *brick);
extern int mars_kill_brick(struct mars_brick *brick);
// mid-level brick instantiation (identity is based on path strings)
2011-03-03 09:02:10 +00:00
extern char *vpath_make(const char *fmt, va_list *args);
extern char *path_make(const char *fmt, ...);
2011-03-22 14:36:26 +00:00
extern char *backskip_replace(const char *path, char delim, bool insert, const char *fmt, ...);
2011-02-28 18:00:32 +00:00
2011-03-03 09:02:10 +00:00
extern struct mars_brick *path_find_brick(struct mars_global *global, const void *brick_type, const char *fmt, ...);
2011-02-28 18:00:32 +00:00
2011-03-01 09:34:36 +00:00
/* Create a new brick and connect its inputs to a set of predecessors.
* When @timeout > 0, switch on the brick as well as its predecessors.
*/
2011-02-28 18:00:32 +00:00
extern struct mars_brick *make_brick_all(
struct mars_global *global,
2011-03-01 09:34:36 +00:00
struct mars_dent *belongs,
2011-03-11 13:57:54 +00:00
void (*setup_fn)(struct mars_brick *brick, void *private),
void *private,
2011-02-28 18:00:32 +00:00
int timeout,
2011-03-01 09:34:36 +00:00
const char *new_name,
const struct generic_brick_type *new_brick_type,
const struct generic_brick_type *prev_brick_type[],
2011-03-23 08:09:00 +00:00
const char *switch_fmt,
2011-02-28 18:00:32 +00:00
const char *new_fmt,
const char *prev_fmt[],
int prev_count,
...
);
// general MARS infrastructure
2011-02-23 20:48:06 +00:00
2011-02-27 14:17:58 +00:00
#define MARS_ERR_ONCE(dent, args...) if (!dent->d_once_error++) MARS_ERR(args)
2011-02-23 20:48:06 +00:00
2011-02-27 14:17:58 +00:00
/* General fs wrappers (for abstraction)
*/
2011-03-18 13:15:40 +00:00
extern int mars_stat(const char *path, struct kstat *stat, bool use_lstat);
2011-02-23 20:48:06 +00:00
extern int mars_mkdir(const char *path);
2011-02-27 14:17:58 +00:00
extern int mars_symlink(const char *oldpath, const char *newpath, const struct timespec *stamp, uid_t uid);
2011-02-23 20:48:06 +00:00
extern int mars_rename(const char *oldpath, const char *newpath);
2011-02-27 14:17:58 +00:00
extern int mars_chmod(const char *path, mode_t mode);
extern int mars_lchown(const char *path, uid_t uid);
2011-02-23 20:48:06 +00:00
2011-03-01 18:00:14 +00:00
#endif // _STRATEGY
/* Some special brick types for avoidance of cyclic references.
*
* The client/server network bricks use this for independent instantiation
* from the main instantiation logic (separate modprobe for mars_server
* is possible).
*/
2011-03-03 09:02:10 +00:00
extern const struct generic_brick_type *_client_brick_type;
2011-03-18 13:15:40 +00:00
extern const struct generic_brick_type *_bio_brick_type;
2011-03-03 09:02:10 +00:00
extern const struct generic_brick_type *_aio_brick_type;
2011-03-01 18:00:14 +00:00
2011-03-02 09:30:56 +00:00
/* Kludge: our kernel threads will have no mm context, but need one
* for stuff like ioctx_alloc() / aio_setup_ring() etc
* which expect userspace resources.
* We fake one.
* TODO: factor out the userspace stuff from AIO such that
* this fake is no longer necessary.
* Even better: replace do_mmap() in AIO stuff by something
* more friendly to kernelspace apps.
*/
#include <linux/mmu_context.h>
extern struct mm_struct *mm_fake;
inline void set_fake(void)
{
mm_fake = current->mm;
if (mm_fake) {
atomic_inc(&mm_fake->mm_count);
atomic_inc(&mm_fake->mm_users);
}
}
inline void put_fake(void)
{
if (mm_fake) {
atomic_dec(&mm_fake->mm_users);
mmput(mm_fake);
mm_fake = NULL;
}
}
inline struct mm_struct *fake_mm(void)
{
#if 0
if (!current->mm) {
// will be never released.... ;)
atomic_inc(&(current->mm = &init_mm)->mm_count);
}
return NULL;
#else
struct mm_struct *old = current->mm;
use_mm(mm_fake);
return old;
#endif
}
/* Cleanup faked mm, otherwise do_exit() will crash
*/
inline void cleanup_mm(struct mm_struct *old)
{
#if 0
if (current->mm == &init_mm) {
current->mm = NULL;
}
#else
unuse_mm(old);
#endif
#if 1
for (;;) msleep(1000);
#endif
}
2011-02-23 20:48:06 +00:00
#endif