diff options
author | David Woodhouse <dwmw2@tylersburg.infradead.org> | 2009-07-13 06:35:12 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-10-29 10:38:47 -0400 |
commit | f5e70d0fe3ea990cfb3fc8d7f76a719adcb1e0b5 (patch) | |
tree | 1794eb51814228ff76f672a541100ad62dd791c9 /drivers/md/Makefile | |
parent | 17d857be649a21ca90008c6dc425d849fa83db5c (diff) |
md: Factor out RAID6 algorithms into lib/
We'll want to use these in btrfs too.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/md/Makefile')
-rw-r--r-- | drivers/md/Makefile | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/drivers/md/Makefile b/drivers/md/Makefile index 1dc4185bd781..c9b3a7843d83 100644 --- a/drivers/md/Makefile +++ b/drivers/md/Makefile | |||
@@ -12,13 +12,6 @@ dm-log-userspace-y \ | |||
12 | += dm-log-userspace-base.o dm-log-userspace-transfer.o | 12 | += dm-log-userspace-base.o dm-log-userspace-transfer.o |
13 | md-mod-y += md.o bitmap.o | 13 | md-mod-y += md.o bitmap.o |
14 | raid456-y += raid5.o | 14 | raid456-y += raid5.o |
15 | raid6_pq-y += raid6algos.o raid6recov.o raid6tables.o \ | ||
16 | raid6int1.o raid6int2.o raid6int4.o \ | ||
17 | raid6int8.o raid6int16.o raid6int32.o \ | ||
18 | raid6altivec1.o raid6altivec2.o raid6altivec4.o \ | ||
19 | raid6altivec8.o \ | ||
20 | raid6mmx.o raid6sse1.o raid6sse2.o | ||
21 | hostprogs-y += mktables | ||
22 | 15 | ||
23 | # Note: link order is important. All raid personalities | 16 | # Note: link order is important. All raid personalities |
24 | # and must come before md.o, as they each initialise | 17 | # and must come before md.o, as they each initialise |
@@ -29,7 +22,6 @@ obj-$(CONFIG_MD_LINEAR) += linear.o | |||
29 | obj-$(CONFIG_MD_RAID0) += raid0.o | 22 | obj-$(CONFIG_MD_RAID0) += raid0.o |
30 | obj-$(CONFIG_MD_RAID1) += raid1.o | 23 | obj-$(CONFIG_MD_RAID1) += raid1.o |
31 | obj-$(CONFIG_MD_RAID10) += raid10.o | 24 | obj-$(CONFIG_MD_RAID10) += raid10.o |
32 | obj-$(CONFIG_MD_RAID6_PQ) += raid6_pq.o | ||
33 | obj-$(CONFIG_MD_RAID456) += raid456.o | 25 | obj-$(CONFIG_MD_RAID456) += raid456.o |
34 | obj-$(CONFIG_MD_MULTIPATH) += multipath.o | 26 | obj-$(CONFIG_MD_MULTIPATH) += multipath.o |
35 | obj-$(CONFIG_MD_FAULTY) += faulty.o | 27 | obj-$(CONFIG_MD_FAULTY) += faulty.o |
@@ -45,75 +37,7 @@ obj-$(CONFIG_DM_MIRROR) += dm-mirror.o dm-log.o dm-region-hash.o | |||
45 | obj-$(CONFIG_DM_LOG_USERSPACE) += dm-log-userspace.o | 37 | obj-$(CONFIG_DM_LOG_USERSPACE) += dm-log-userspace.o |
46 | obj-$(CONFIG_DM_ZERO) += dm-zero.o | 38 | obj-$(CONFIG_DM_ZERO) += dm-zero.o |
47 | 39 | ||
48 | quiet_cmd_unroll = UNROLL $@ | ||
49 | cmd_unroll = $(PERL) $(srctree)/$(src)/unroll.pl $(UNROLL) \ | ||
50 | < $< > $@ || ( rm -f $@ && exit 1 ) | ||
51 | |||
52 | ifeq ($(CONFIG_ALTIVEC),y) | ||
53 | altivec_flags := -maltivec -mabi=altivec | ||
54 | endif | ||
55 | |||
56 | ifeq ($(CONFIG_DM_UEVENT),y) | 40 | ifeq ($(CONFIG_DM_UEVENT),y) |
57 | dm-mod-objs += dm-uevent.o | 41 | dm-mod-objs += dm-uevent.o |
58 | endif | 42 | endif |
59 | 43 | ||
60 | targets += raid6int1.c | ||
61 | $(obj)/raid6int1.c: UNROLL := 1 | ||
62 | $(obj)/raid6int1.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
63 | $(call if_changed,unroll) | ||
64 | |||
65 | targets += raid6int2.c | ||
66 | $(obj)/raid6int2.c: UNROLL := 2 | ||
67 | $(obj)/raid6int2.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
68 | $(call if_changed,unroll) | ||
69 | |||
70 | targets += raid6int4.c | ||
71 | $(obj)/raid6int4.c: UNROLL := 4 | ||
72 | $(obj)/raid6int4.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
73 | $(call if_changed,unroll) | ||
74 | |||
75 | targets += raid6int8.c | ||
76 | $(obj)/raid6int8.c: UNROLL := 8 | ||
77 | $(obj)/raid6int8.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
78 | $(call if_changed,unroll) | ||
79 | |||
80 | targets += raid6int16.c | ||
81 | $(obj)/raid6int16.c: UNROLL := 16 | ||
82 | $(obj)/raid6int16.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
83 | $(call if_changed,unroll) | ||
84 | |||
85 | targets += raid6int32.c | ||
86 | $(obj)/raid6int32.c: UNROLL := 32 | ||
87 | $(obj)/raid6int32.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | ||
88 | $(call if_changed,unroll) | ||
89 | |||
90 | CFLAGS_raid6altivec1.o += $(altivec_flags) | ||
91 | targets += raid6altivec1.c | ||
92 | $(obj)/raid6altivec1.c: UNROLL := 1 | ||
93 | $(obj)/raid6altivec1.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | ||
94 | $(call if_changed,unroll) | ||
95 | |||
96 | CFLAGS_raid6altivec2.o += $(altivec_flags) | ||
97 | targets += raid6altivec2.c | ||
98 | $(obj)/raid6altivec2.c: UNROLL := 2 | ||
99 | $(obj)/raid6altivec2.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | ||
100 | $(call if_changed,unroll) | ||
101 | |||
102 | CFLAGS_raid6altivec4.o += $(altivec_flags) | ||
103 | targets += raid6altivec4.c | ||
104 | $(obj)/raid6altivec4.c: UNROLL := 4 | ||
105 | $(obj)/raid6altivec4.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | ||
106 | $(call if_changed,unroll) | ||
107 | |||
108 | CFLAGS_raid6altivec8.o += $(altivec_flags) | ||
109 | targets += raid6altivec8.c | ||
110 | $(obj)/raid6altivec8.c: UNROLL := 8 | ||
111 | $(obj)/raid6altivec8.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | ||
112 | $(call if_changed,unroll) | ||
113 | |||
114 | quiet_cmd_mktable = TABLE $@ | ||
115 | cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 ) | ||
116 | |||
117 | targets += raid6tables.c | ||
118 | $(obj)/raid6tables.c: $(obj)/mktables FORCE | ||
119 | $(call if_changed,mktable) | ||