aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Makefile
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2011-01-19 06:03:25 -0500
committerDavid S. Miller <davem@davemloft.net>2011-01-24 17:51:56 -0500
commitc39649c331c70952700f99832b03f87e9d7f5b4b (patch)
tree19ba9cea5102595e42bcd043aa53eb666ea834fa /lib/Makefile
parentc2df88cbb43c25db27fbbf94e92318bdad018f3e (diff)
lib: cpu_rmap: CPU affinity reverse-mapping
When initiating I/O on a multiqueue and multi-IRQ device, we may want to select a queue for which the response will be handled on the same or a nearby CPU. This requires a reverse-map of IRQ affinity. Add library functions to support a generic reverse-mapping from CPUs to objects with affinity and the specific case where the objects are IRQs. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
index cbb774f7d41d..b73ba01a818a 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -110,6 +110,8 @@ obj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o
110 110
111obj-$(CONFIG_AVERAGE) += average.o 111obj-$(CONFIG_AVERAGE) += average.o
112 112
113obj-$(CONFIG_CPU_RMAP) += cpu_rmap.o
114
113hostprogs-y := gen_crc32table 115hostprogs-y := gen_crc32table
114clean-files := crc32table.h 116clean-files := crc32table.h
115 117