From: Latchesar Ionkov <lucho@ionkov.net>
To: v9fs-developer@lists.sourceforge.net
Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
ericvh@gmail.com
Subject: [RFC][PATCH 6/6] 9p: 9P server Kconfig and Makefile changes
Date: Sun, 30 Sep 2007 16:43:29 -0600 [thread overview]
Message-ID: <20070930224329.GF25590@ionkov.net> (raw)
This patchset provides support for in-kernel 9P2000 servers.
9P server Kconfig and Makefile changes.
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
---
net/9p/Kconfig | 1 +
net/9p/Makefile | 1 +
net/9p/srv/Kconfig | 9 +++++++++
net/9p/srv/Makefile | 7 +++++++
4 files changed, 18 insertions(+), 0 deletions(-)
create mode 100644 net/9p/srv/Kconfig
create mode 100644 net/9p/srv/Makefile
diff --git a/net/9p/Kconfig b/net/9p/Kconfig
index eecbf12..007ce2b 100644
--- a/net/9p/Kconfig
+++ b/net/9p/Kconfig
@@ -29,3 +29,4 @@ config NET_9P_DEBUG
help
Say Y if you want the 9P subsistem to log debug information.
+source "net/9p/srv/Kconfig"
diff --git a/net/9p/Makefile b/net/9p/Makefile
index 5059bc0..be4d93e 100644
--- a/net/9p/Makefile
+++ b/net/9p/Makefile
@@ -1,5 +1,6 @@
obj-$(CONFIG_NET_9P) := 9pnet.o
obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o
+obj-$(CONFIG_NET_9P_SRV) += srv/
9pnet-objs := \
mod.o \
diff --git a/net/9p/srv/Kconfig b/net/9p/srv/Kconfig
new file mode 100644
index 0000000..2013945
--- /dev/null
+++ b/net/9p/srv/Kconfig
@@ -0,0 +1,9 @@
+#
+# 9P server configuration
+#
+
+config NET_9P_SRV
+ tristate "9P server support"
+ depends on NET_9P
+ help
+ Say Y if you want the 9P server support
diff --git a/net/9p/srv/Makefile b/net/9p/srv/Makefile
new file mode 100644
index 0000000..c669592
--- /dev/null
+++ b/net/9p/srv/Makefile
@@ -0,0 +1,7 @@
+obj-$(CONFIG_NET_9P_SRV) += 9psrv.o
+
+9psrv-objs := \
+ srv.o \
+ conn.o \
+ fid.o \
+ socksrv.o \
--
1.5.2.4
reply other threads:[~2007-09-30 23:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070930224329.GF25590@ionkov.net \
--to=lucho@ionkov.net \
--cc=ericvh@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=v9fs-developer@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.