diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2009-01-25 09:55:30 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-12 13:58:06 -0400 |
commit | 02941a530ef736210b4cf8b24dd34c238d5d5a40 (patch) | |
tree | f4ac1f663392cbc107e618dd28caa65f27d608ae /drivers/scsi/osd/Kbuild | |
parent | de258bf5e63863f42e0f9a7c5ffd29916a41e399 (diff) |
[SCSI] libosd: OSDv1 preliminary implementation
Implementation of the most basic OSD functionality and
infrastructure. Mainly Format, Create/Remove Partition,
Create/Remove Object, and read/write.
- Add Makefile and Kbuild to compile libosd.ko
- osd_initiator.c Implementation file for osd_initiator.h
and osd_sec.h APIs
- osd_debug.h - Some kprintf macro definitions
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Reviewed-by: Benny Halevy <bhalevy@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/osd/Kbuild')
-rw-r--r-- | drivers/scsi/osd/Kbuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/scsi/osd/Kbuild b/drivers/scsi/osd/Kbuild new file mode 100644 index 000000000000..a95e0251005c --- /dev/null +++ b/drivers/scsi/osd/Kbuild | |||
@@ -0,0 +1,32 @@ | |||
1 | # | ||
2 | # Kbuild for the OSD modules | ||
3 | # | ||
4 | # Copyright (C) 2008 Panasas Inc. All rights reserved. | ||
5 | # | ||
6 | # Authors: | ||
7 | # Boaz Harrosh <bharrosh@panasas.com> | ||
8 | # Benny Halevy <bhalevy@panasas.com> | ||
9 | # | ||
10 | # This program is free software; you can redistribute it and/or modify | ||
11 | # it under the terms of the GNU General Public License version 2 | ||
12 | # | ||
13 | |||
14 | ifneq ($(OSD_INC),) | ||
15 | # we are built out-of-tree Kconfigure everything as on | ||
16 | |||
17 | CONFIG_SCSI_OSD_INITIATOR=m | ||
18 | ccflags-y += -DCONFIG_SCSI_OSD_INITIATOR -DCONFIG_SCSI_OSD_INITIATOR_MODULE | ||
19 | |||
20 | # Uncomment to turn debug on | ||
21 | # ccflags-y += -DCONFIG_SCSI_OSD_DEBUG | ||
22 | |||
23 | # if we are built out-of-tree and the hosting kernel has OSD headers | ||
24 | # then "ccflags-y +=" will not pick the out-off-tree headers. Only by doing | ||
25 | # this it will work. This might break in future kernels | ||
26 | LINUXINCLUDE := -I$(OSD_INC) $(LINUXINCLUDE) | ||
27 | |||
28 | endif | ||
29 | |||
30 | # libosd.ko - osd-initiator library | ||
31 | libosd-y := osd_initiator.o | ||
32 | obj-$(CONFIG_SCSI_OSD_INITIATOR) += libosd.o | ||