mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
6348b903d7
There are no more users left of the p9_idpool; delete it. Link: http://lkml.kernel.org/r/20180711210225.19730-7-willy@infradead.org Signed-off-by: Matthew Wilcox <willy@infradead.org> Cc: Eric Van Hensbergen <ericvh@gmail.com> Cc: Ron Minnich <rminnich@sandia.gov> Cc: Latchesar Ionkov <lucho@ionkov.net> Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
22 lines
406 B
Makefile
22 lines
406 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_NET_9P) := 9pnet.o
|
|
obj-$(CONFIG_NET_9P_XEN) += 9pnet_xen.o
|
|
obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
|
|
obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o
|
|
|
|
9pnet-objs := \
|
|
mod.o \
|
|
client.o \
|
|
error.o \
|
|
protocol.o \
|
|
trans_fd.o \
|
|
trans_common.o \
|
|
|
|
9pnet_virtio-objs := \
|
|
trans_virtio.o \
|
|
|
|
9pnet_xen-objs := \
|
|
trans_xen.o \
|
|
|
|
9pnet_rdma-objs := \
|
|
trans_rdma.o \
|