mirror of https://github.com/schoebel/mars
import mars-97.tgz
This commit is contained in:
parent
4e77bbc1c3
commit
f0116663e8
7
Kconfig
7
Kconfig
|
@ -98,6 +98,13 @@ config MARS_COPY
|
|||
---help---
|
||||
Experimental storage System.
|
||||
|
||||
config MARS_DCRAID
|
||||
tristate "dcraid brick"
|
||||
depends on MARS
|
||||
default m
|
||||
---help---
|
||||
Experimental storage System.
|
||||
|
||||
config MARS_TEST
|
||||
tristate "provisionary TEST"
|
||||
depends on MARS
|
||||
|
|
1
Makefile
1
Makefile
|
@ -15,6 +15,7 @@ obj-$(CONFIG_MARS_TRANS_LOGGER) += mars_trans_logger.o
|
|||
obj-$(CONFIG_MARS_SERVER) += mars_server.o
|
||||
obj-$(CONFIG_MARS_CLIENT) += mars_client.o
|
||||
obj-$(CONFIG_MARS_COPY) += mars_copy.o
|
||||
obj-$(CONFIG_MARS_DCRAID) += mars_dcraid.o
|
||||
|
||||
obj-$(CONFIG_MARS_TEST) += mars_test.o
|
||||
obj-$(CONFIG_MARS_LIGHT) += mars_light.o
|
||||
|
|
1
mars.h
1
mars.h
|
@ -4,7 +4,6 @@
|
|||
|
||||
#include <linux/semaphore.h>
|
||||
|
||||
#define MEMLEAK // FIXME: remove this
|
||||
//#define MARS_TRACING // write runtime trace data to /mars/trace.csv
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#define MARS_MAX_AIO_READ 32
|
||||
|
||||
#define STRONG_MM
|
||||
#define MEMLEAK // FIXME: remove this
|
||||
|
||||
///////////////////////// own type definitions ////////////////////////
|
||||
|
||||
|
|
Loading…
Reference in New Issue