From: "Dmitry V. Levin" <ldv@altlinux.org>
To: Arnd Bergmann <arnd@arndb.de>, Andrew Morton <akpm@linux-foundation.org>
Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 0/5] uapi: fix userspace compilation of asm/ ipc headers
Date: Sun, 26 Mar 2017 06:27:28 +0300 [thread overview]
Message-ID: <20170326032728.GA13481@altlinux.org> (raw)
In-Reply-To: <CAK8P3a1=-Q=gVRyk+PwqxTeTPXa4yrmqWKG7SyZng2d7bcbG=g@mail.gmail.com>
This is resend of short series of trivial userspace compilation fixes
acked earlier by Arnd Bergmann.
Nobody else from the long Cc list of the original patch series has shown
any interest at all, so I've trimmed Cc down.
Dmitry V. Levin (5):
uapi: fix asm/ipcbuf.h userspace compilation errors
uapi: fix asm/msgbuf.h userspace compilation errors
uapi: fix asm/sembuf.h userspace compilation errors
uapi: fix asm/shmbuf.h userspace compilation errors
uapi: fix another asm/shmbuf.h userspace compilation error
arch/alpha/include/uapi/asm/msgbuf.h | 2 ++
arch/alpha/include/uapi/asm/sembuf.h | 2 ++
arch/alpha/include/uapi/asm/shmbuf.h | 4 +++-
arch/avr32/include/uapi/asm/msgbuf.h | 2 ++
arch/avr32/include/uapi/asm/sembuf.h | 2 ++
arch/avr32/include/uapi/asm/shmbuf.h | 4 +++-
arch/frv/include/uapi/asm/msgbuf.h | 2 ++
arch/frv/include/uapi/asm/sembuf.h | 2 ++
arch/frv/include/uapi/asm/shmbuf.h | 4 +++-
arch/ia64/include/uapi/asm/msgbuf.h | 2 ++
arch/ia64/include/uapi/asm/sembuf.h | 2 ++
arch/ia64/include/uapi/asm/shmbuf.h | 4 +++-
arch/m32r/include/uapi/asm/msgbuf.h | 2 ++
arch/m32r/include/uapi/asm/sembuf.h | 2 ++
arch/m32r/include/uapi/asm/shmbuf.h | 4 +++-
arch/mips/include/uapi/asm/msgbuf.h | 1 +
arch/mips/include/uapi/asm/sembuf.h | 2 ++
arch/mips/include/uapi/asm/shmbuf.h | 4 +++-
arch/mn10300/include/uapi/asm/msgbuf.h | 2 ++
arch/mn10300/include/uapi/asm/sembuf.h | 2 ++
arch/mn10300/include/uapi/asm/shmbuf.h | 4 +++-
arch/parisc/include/uapi/asm/msgbuf.h | 1 +
arch/parisc/include/uapi/asm/sembuf.h | 1 +
arch/parisc/include/uapi/asm/shmbuf.h | 1 +
arch/powerpc/include/uapi/asm/msgbuf.h | 2 ++
arch/powerpc/include/uapi/asm/sembuf.h | 2 ++
arch/powerpc/include/uapi/asm/shmbuf.h | 4 +++-
arch/s390/include/uapi/asm/ipcbuf.h | 2 ++
arch/s390/include/uapi/asm/msgbuf.h | 2 ++
arch/s390/include/uapi/asm/sembuf.h | 2 ++
arch/s390/include/uapi/asm/shmbuf.h | 4 +++-
arch/sparc/include/uapi/asm/ipcbuf.h | 2 ++
arch/sparc/include/uapi/asm/msgbuf.h | 2 ++
arch/sparc/include/uapi/asm/sembuf.h | 2 ++
arch/sparc/include/uapi/asm/shmbuf.h | 4 +++-
arch/x86/include/uapi/asm/sembuf.h | 2 ++
arch/xtensa/include/uapi/asm/ipcbuf.h | 2 ++
arch/xtensa/include/uapi/asm/msgbuf.h | 2 ++
arch/xtensa/include/uapi/asm/sembuf.h | 1 +
arch/xtensa/include/uapi/asm/shmbuf.h | 6 ++++--
include/uapi/asm-generic/ipcbuf.h | 2 ++
include/uapi/asm-generic/msgbuf.h | 1 +
include/uapi/asm-generic/sembuf.h | 1 +
include/uapi/asm-generic/shmbuf.h | 3 ++-
44 files changed, 93 insertions(+), 13 deletions(-)
--
ldv
next prev parent reply other threads:[~2017-03-26 3:27 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-02 0:46 [PATCH] uapi: fix another asm/shmbuf.h userspace compilation error Dmitry V. Levin
2017-03-02 0:46 ` Dmitry V. Levin
2017-03-02 13:07 ` Arnd Bergmann
2017-03-02 13:07 ` Arnd Bergmann
2017-03-26 3:27 ` Dmitry V. Levin [this message]
2017-03-26 3:30 ` [PATCH 1/5] uapi: fix asm/ipcbuf.h userspace compilation errors Dmitry V. Levin
2017-03-26 3:30 ` [PATCH 2/5] uapi: fix asm/msgbuf.h " Dmitry V. Levin
2017-03-26 3:30 ` Dmitry V. Levin
2017-03-26 3:30 ` [PATCH 3/5] uapi: fix asm/sembuf.h " Dmitry V. Levin
2017-03-26 3:30 ` Dmitry V. Levin
2017-03-26 3:30 ` [PATCH 4/5] uapi: fix asm/shmbuf.h " Dmitry V. Levin
2017-03-26 3:30 ` Dmitry V. Levin
2017-03-26 3:30 ` [PATCH 5/5] uapi: fix another asm/shmbuf.h userspace compilation error Dmitry V. Levin
2017-03-26 3:30 ` Dmitry V. Levin
2017-08-04 15:22 ` [PATCH] " James Hogan
2017-08-04 15:22 ` James Hogan
-- strict thread matches above, loose matches on Subject: below --
2017-02-26 18:29 [PATCH] uapi: fix asm/ipcbuf.h userspace compilation errors Dmitry V. Levin
2017-02-26 18:29 ` Dmitry V. Levin
2017-03-01 16:23 ` Arnd Bergmann
2017-03-02 0:22 ` [PATCH 1/3] uapi: fix asm/msgbuf.h " Dmitry V. Levin
2017-03-02 0:22 ` Dmitry V. Levin
2017-03-02 0:22 ` [PATCH 2/3] uapi: fix asm/sembuf.h " Dmitry V. Levin
2017-03-02 0:22 ` Dmitry V. Levin
2017-03-02 0:22 ` [PATCH 3/3] uapi: fix asm/shmbuf.h " Dmitry V. Levin
2017-03-02 0:22 ` Dmitry V. Levin
2017-03-02 13:14 ` Arnd Bergmann
2017-03-02 13:14 ` Arnd Bergmann
2021-12-27 10:53 ` [PATCH v2] " Dmitry V. Levin
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=20170326032728.GA13481@altlinux.org \
--to=ldv@altlinux.org \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).