LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: arnd@arndb.de, ebiederm@xmission.com, gnomes@lxorguk.ukuu.org.uk, teg@jklm.no, jkosina@suse.cz, luto@amacapital.net, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Cc: daniel@zonque.org, dh.herrmann@gmail.com, tixxdz@opendz.org, Greg Kroah-Hartman <gregkh@linuxfoundation.org> Subject: [PATCH 12/14] kdbus: add Makefile, Kconfig and MAINTAINERS entry Date: Mon, 9 Mar 2015 14:09:18 +0100 [thread overview] Message-ID: <1425906560-13798-13-git-send-email-gregkh@linuxfoundation.org> (raw) In-Reply-To: <1425906560-13798-1-git-send-email-gregkh@linuxfoundation.org> From: Daniel Mack <daniel@zonque.org> This patch hooks up the build system to actually compile the files added by previous patches. It also adds an entry to MAINTAINERS to direct people to Greg KH, David Herrmann, Djalal Harouni and me for questions and patches. Signed-off-by: Daniel Mack <daniel@zonque.org> Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Djalal Harouni <tixxdz@opendz.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> --- MAINTAINERS | 13 +++++++++++++ init/Kconfig | 12 ++++++++++++ ipc/Makefile | 2 +- ipc/kdbus/Makefile | 22 ++++++++++++++++++++++ 4 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 ipc/kdbus/Makefile diff --git a/MAINTAINERS b/MAINTAINERS index 6239a305dff0..e924246fb545 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -5503,6 +5503,19 @@ S: Maintained F: Documentation/kbuild/kconfig-language.txt F: scripts/kconfig/ +KDBUS +M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> +M: Daniel Mack <daniel@zonque.org> +M: David Herrmann <dh.herrmann@googlemail.com> +M: Djalal Harouni <tixxdz@opendz.org> +L: linux-kernel@vger.kernel.org +S: Maintained +F: ipc/kdbus/* +F: samples/kdbus/* +F: Documentation/kdbus/* +F: include/uapi/linux/kdbus.h +F: tools/testing/selftests/kdbus/ + KDUMP M: Vivek Goyal <vgoyal@redhat.com> M: Haren Myneni <hbabu@us.ibm.com> diff --git a/init/Kconfig b/init/Kconfig index f5dbc6d4261b..a7b462e7d647 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -261,6 +261,18 @@ config POSIX_MQUEUE_SYSCTL depends on SYSCTL default y +config KDBUS + tristate "kdbus interprocess communication" + depends on TMPFS + help + D-Bus is a system for low-latency, low-overhead, easy to use + interprocess communication (IPC). + + See Documentation/kdbus.txt + + To compile this driver as a module, choose M here: the + module will be called kdbus. + config CROSS_MEMORY_ATTACH bool "Enable process_vm_readv/writev syscalls" depends on MMU diff --git a/ipc/Makefile b/ipc/Makefile index 86c7300ecdf5..68ec4167d11b 100644 --- a/ipc/Makefile +++ b/ipc/Makefile @@ -9,4 +9,4 @@ obj_mq-$(CONFIG_COMPAT) += compat_mq.o obj-$(CONFIG_POSIX_MQUEUE) += mqueue.o msgutil.o $(obj_mq-y) obj-$(CONFIG_IPC_NS) += namespace.o obj-$(CONFIG_POSIX_MQUEUE_SYSCTL) += mq_sysctl.o - +obj-$(CONFIG_KDBUS) += kdbus/ diff --git a/ipc/kdbus/Makefile b/ipc/kdbus/Makefile new file mode 100644 index 000000000000..7ee9271e1449 --- /dev/null +++ b/ipc/kdbus/Makefile @@ -0,0 +1,22 @@ +kdbus-y := \ + bus.o \ + connection.o \ + endpoint.o \ + fs.o \ + handle.o \ + item.o \ + main.o \ + match.o \ + message.o \ + metadata.o \ + names.o \ + node.o \ + notify.o \ + domain.o \ + policy.o \ + pool.o \ + reply.o \ + queue.o \ + util.o + +obj-$(CONFIG_KDBUS) += kdbus.o -- 2.3.1
next prev parent reply other threads:[~2015-03-09 13:11 UTC|newest] Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top 2015-03-09 13:09 [PATCH v4 00/14] Add kdbus implementation Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 01/14] kdbus: add documentation Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 02/14] kdbus: add uapi header file Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 03/14] kdbus: add driver skeleton, ioctl entry points and utility functions Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 04/14] kdbus: add connection pool implementation Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 05/14] kdbus: add connection, queue handling and message validation code Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 06/14] kdbus: add node and filesystem implementation Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 07/14] kdbus: add code to gather metadata Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 08/14] kdbus: add code for notifications and matches Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 09/14] kdbus: add code for buses, domains and endpoints Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 10/14] kdbus: add name registry implementation Greg Kroah-Hartman 2015-03-09 13:09 ` [PATCH 11/14] kdbus: add policy database implementation Greg Kroah-Hartman 2015-03-09 13:09 ` Greg Kroah-Hartman [this message] 2015-03-24 15:15 ` [PATCH 12/14] kdbus: add Makefile, Kconfig and MAINTAINERS entry Jiri Slaby 2015-03-24 18:51 ` [PATCH] kdbus: Fix CONFIG_KDBUS help text Daniel Mack 2015-03-25 1:05 ` David Herrmann 2015-03-25 9:51 ` Greg KH 2015-03-09 13:09 ` [PATCH 13/14] kdbus: add walk-through user space example Greg Kroah-Hartman 2015-03-12 14:52 ` Sasha Levin 2015-03-12 16:27 ` [PATCH] samples/kdbus: add -lrt David Herrmann 2015-03-12 21:40 ` [PATCH] kdbus: " Greg Kroah-Hartman 2015-03-12 16:34 ` [PATCH 13/14] kdbus: add walk-through user space example David Herrmann 2015-03-24 16:46 ` Jiri Slaby 2015-03-24 17:15 ` David Herrmann 2015-03-24 17:37 ` Jiri Slaby 2015-03-24 18:22 ` Michal Marek 2015-03-24 18:51 ` Daniel Mack 2015-03-31 13:11 ` [PATCH] samples: kdbus: build kdbus-workers conditionally Daniel Mack 2015-04-01 12:47 ` Greg KH 2015-04-01 21:41 ` Andrew Morton 2015-04-03 11:02 ` Daniel Mack 2015-03-09 13:09 ` [PATCH 14/14] kdbus: add selftests Greg Kroah-Hartman 2015-03-15 5:13 ` [PATCH] kdbus: fix minor typo in the walk-through example Nicolas Iooss 2015-03-15 9:32 ` Greg KH 2015-03-17 19:24 ` [PATCH v4 00/14] Add kdbus implementation Andy Lutomirski 2015-03-18 13:54 ` David Herrmann 2015-03-18 18:24 ` Andy Lutomirski 2015-03-19 11:26 ` David Herrmann 2015-03-19 15:48 ` Andy Lutomirski 2015-03-23 15:28 ` David Herrmann 2015-03-23 23:24 ` Andy Lutomirski 2015-03-24 0:20 ` Eric W. Biederman 2015-03-25 17:29 ` David Herrmann 2015-03-25 18:12 ` Andy Lutomirski 2015-03-30 16:56 ` David Herrmann 2015-03-31 13:58 ` Andy Lutomirski 2015-03-31 15:10 ` Tom Gundersen 2015-03-31 18:29 ` Andy Lutomirski 2015-04-03 11:51 ` David Herrmann 2015-04-05 12:09 ` Eric W. Biederman 2015-04-05 13:46 ` Greg Kroah-Hartman 2015-04-08 22:38 ` Andy Lutomirski
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=1425906560-13798-13-git-send-email-gregkh@linuxfoundation.org \ --to=gregkh@linuxfoundation.org \ --cc=arnd@arndb.de \ --cc=daniel@zonque.org \ --cc=dh.herrmann@gmail.com \ --cc=ebiederm@xmission.com \ --cc=gnomes@lxorguk.ukuu.org.uk \ --cc=jkosina@suse.cz \ --cc=linux-api@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=luto@amacapital.net \ --cc=teg@jklm.no \ --cc=tixxdz@opendz.org \ /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: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).