public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Paul Osmialowski <p.osmialowsk@samsung.com>
Cc: Daniel Mack <daniel@zonque.org>,
	David Herrmann <dh.herrmann@googlemail.com>,
	Djalal Harouni <tixxdz@opendz.org>,
	linux-kernel@vger.kernel.org,
	Lukasz Skalski <l.skalski@samsung.com>
Subject: Re: [RFC PATCH] kdbus: move all kdbus headers to include/linux/kdbus
Date: Wed, 25 Mar 2015 23:02:03 +0100	[thread overview]
Message-ID: <20150325220203.GA10513@kroah.com> (raw)
In-Reply-To: <1427297835-19978-2-git-send-email-p.osmialowsk@samsung.com>

On Wed, Mar 25, 2015 at 04:37:15PM +0100, Paul Osmialowski wrote:
> These headers are required to implement LSM hooks for kdbus
> and possibly other things that might deal with kdbus.
> 
> Signed-off-by: Paul Osmialowski <p.osmialowsk@samsung.com>
> ---
>  include/linux/kdbus/bus.h        | 101 +++++++++++++++
>  include/linux/kdbus/connection.h | 257 +++++++++++++++++++++++++++++++++++++++
>  include/linux/kdbus/domain.h     |  77 ++++++++++++
>  include/linux/kdbus/endpoint.h   |  67 ++++++++++
>  include/linux/kdbus/fs.h         |  28 +++++
>  include/linux/kdbus/handle.h     |  85 +++++++++++++
>  include/linux/kdbus/item.h       |  64 ++++++++++
>  include/linux/kdbus/limits.h     |  64 ++++++++++
>  include/linux/kdbus/match.h      |  35 ++++++
>  include/linux/kdbus/message.h    | 133 ++++++++++++++++++++
>  include/linux/kdbus/metadata.h   |  57 +++++++++
>  include/linux/kdbus/names.h      |  74 +++++++++++
>  include/linux/kdbus/node.h       |  84 +++++++++++++
>  include/linux/kdbus/notify.h     |  30 +++++
>  include/linux/kdbus/policy.h     |  51 ++++++++
>  include/linux/kdbus/pool.h       |  46 +++++++
>  include/linux/kdbus/queue.h      |  92 ++++++++++++++
>  include/linux/kdbus/reply.h      |  68 +++++++++++
>  include/linux/kdbus/util.h       |  74 +++++++++++
>  ipc/kdbus/Makefile               |   2 +
>  ipc/kdbus/bus.h                  | 101 ---------------
>  ipc/kdbus/connection.h           | 257 ---------------------------------------
>  ipc/kdbus/domain.h               |  77 ------------
>  ipc/kdbus/endpoint.h             |  67 ----------
>  ipc/kdbus/fs.h                   |  28 -----
>  ipc/kdbus/handle.h               |  85 -------------
>  ipc/kdbus/item.h                 |  64 ----------
>  ipc/kdbus/limits.h               |  64 ----------
>  ipc/kdbus/match.h                |  35 ------
>  ipc/kdbus/message.h              | 133 --------------------
>  ipc/kdbus/metadata.h             |  57 ---------
>  ipc/kdbus/names.h                |  74 -----------
>  ipc/kdbus/node.h                 |  84 -------------
>  ipc/kdbus/notify.h               |  30 -----
>  ipc/kdbus/policy.h               |  51 --------
>  ipc/kdbus/pool.h                 |  46 -------
>  ipc/kdbus/queue.h                |  92 --------------
>  ipc/kdbus/reply.h                |  68 -----------
>  ipc/kdbus/util.h                 |  74 -----------
>  39 files changed, 1489 insertions(+), 1487 deletions(-)
>  create mode 100644 include/linux/kdbus/bus.h
>  create mode 100644 include/linux/kdbus/connection.h
>  create mode 100644 include/linux/kdbus/domain.h
>  create mode 100644 include/linux/kdbus/endpoint.h
>  create mode 100644 include/linux/kdbus/fs.h
>  create mode 100644 include/linux/kdbus/handle.h
>  create mode 100644 include/linux/kdbus/item.h
>  create mode 100644 include/linux/kdbus/limits.h
>  create mode 100644 include/linux/kdbus/match.h
>  create mode 100644 include/linux/kdbus/message.h
>  create mode 100644 include/linux/kdbus/metadata.h
>  create mode 100644 include/linux/kdbus/names.h
>  create mode 100644 include/linux/kdbus/node.h
>  create mode 100644 include/linux/kdbus/notify.h
>  create mode 100644 include/linux/kdbus/policy.h
>  create mode 100644 include/linux/kdbus/pool.h
>  create mode 100644 include/linux/kdbus/queue.h
>  create mode 100644 include/linux/kdbus/reply.h
>  create mode 100644 include/linux/kdbus/util.h
>  delete mode 100644 ipc/kdbus/bus.h
>  delete mode 100644 ipc/kdbus/connection.h
>  delete mode 100644 ipc/kdbus/domain.h
>  delete mode 100644 ipc/kdbus/endpoint.h
>  delete mode 100644 ipc/kdbus/fs.h
>  delete mode 100644 ipc/kdbus/handle.h
>  delete mode 100644 ipc/kdbus/item.h
>  delete mode 100644 ipc/kdbus/limits.h
>  delete mode 100644 ipc/kdbus/match.h
>  delete mode 100644 ipc/kdbus/message.h
>  delete mode 100644 ipc/kdbus/metadata.h
>  delete mode 100644 ipc/kdbus/names.h
>  delete mode 100644 ipc/kdbus/node.h
>  delete mode 100644 ipc/kdbus/notify.h
>  delete mode 100644 ipc/kdbus/policy.h
>  delete mode 100644 ipc/kdbus/pool.h
>  delete mode 100644 ipc/kdbus/queue.h
>  delete mode 100644 ipc/kdbus/reply.h
>  delete mode 100644 ipc/kdbus/util.h

In the future, please generate patches with '-M' that shows a file being
moved.  It makes the diff much smaller and easier to read and review.

thanks,

greg k-h

      parent reply	other threads:[~2015-03-25 22:02 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-25 15:37 Paul Osmialowski
2015-03-25 15:37 ` [RFC PATCH] kdbus: move all kdbus headers to include/linux/kdbus Paul Osmialowski
2015-03-25 15:45   ` David Herrmann
2015-03-25 16:07     ` Paul Osmialowski
2015-03-25 16:11     ` Djalal Harouni
2015-03-25 22:02   ` Greg Kroah-Hartman [this message]

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=20150325220203.GA10513@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=daniel@zonque.org \
    --cc=dh.herrmann@googlemail.com \
    --cc=l.skalski@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=p.osmialowsk@samsung.com \
    --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: link
Be 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