diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2007-11-30 09:16:50 +0100 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-01-28 10:05:27 +0100 |
commit | 0db9299f48ebd4a860d6ad4e1d36ac50671d48e7 (patch) | |
tree | 37ae5e75f26969b53548a1ea7c69284e6b269bc9 /lib/Makefile | |
parent | 91525300baf162e83e923b09ca286f9205e21522 (diff) | |
download | linux-0db9299f48ebd4a860d6ad4e1d36ac50671d48e7.tar.gz linux-0db9299f48ebd4a860d6ad4e1d36ac50671d48e7.tar.bz2 linux-0db9299f48ebd4a860d6ad4e1d36ac50671d48e7.zip |
SG: Move functions to lib/scatterlist.c and add sg chaining allocator helpers
Manually doing chained sg lists is not trivial, so add some helpers
to make sure that drivers get it right.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index b6793ed28d84..89841dc9d91c 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,7 +6,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ rbtree.o radix-tree.o dump_stack.o \ idr.o int_sqrt.o extable.o prio_tree.o \ sha1.o irq_regs.o reciprocal_div.o argv_split.o \ - proportions.o prio_heap.o + proportions.o prio_heap.o scatterlist.o lib-$(CONFIG_MMU) += ioremap.o lib-$(CONFIG_SMP) += cpumask.o |