From: John Stultz <john.stultz@linaro.org>
To: LKML <linux-kernel@vger.kernel.org>
Cc: "John Stultz" <john.stultz@linaro.org>,
"Greg KH" <gregkh@linuxfoundation.org>,
"Colin Cross" <ccross@android.com>,
"Arve Hjønnevåg" <arve@android.com>,
"Android Kernel Team" <kernel-team@android.com>
Subject: [PATCH 00/14][RFC] Android updates for staging-next
Date: Mon, 17 Feb 2014 13:58:28 -0800 [thread overview]
Message-ID: <1392674322-9036-1-git-send-email-john.stultz@linaro.org> (raw)
I recently went through the Android AOSP common tree and
cherry-picked out a number of changes that haven't yet
been submitted upstream.
I wanted to send them out for comment and potential
merging for 3.15 via staging-next.
Few minor notes:
* The first patch in the series (binder: Fix death notifications)
could potentially be merged in 3.14 as a fix.
* The binder ABI change patch had a large number of checkpatch
warnings for columns over 80 chars. I've fixed most of them,
but the remaining are all strings, which I don't have a good
sense of how to best address (splitting the string also give
warnings).
* The only other unaddressed checkpatch issue is:
WARNING: __packed is preferred over __attribute__((packed))
But I'm hesitant to change that as this is a uapi .h file and
I'm not sure if __packed is defined in userspace.
* The last patch isn't yet submitted to AOSP, but it seemed obvious
enough and if there's no objections I'll submit it shortly.
Comments, thoughts, suggestions?
thanks
-john
Cc: Greg KH <gregkh@linuxfoundation.org>
Cc: Colin Cross <ccross@android.com>
Cc: Arve Hjønnevåg <arve@android.com>
Cc: Android Kernel Team <kernel-team@android.com>
Arve Hjønnevåg (2):
staging: binder: Fix death notifications
staging: binder: Support concurrent 32 bit and 64 bit processes.
Colin Cross (5):
staging: android: Split uapi out of android_alarm.h
staging: android: Split uapi out of ashmem.h
staging: android: split uapi out of sync.h and sw_sync.h
staging: android: Split uapi out of binder.h
staging: ion: Move shrinker out of heaps
John Stultz (1):
staging: binder: Improve Kconfig entry for ANDROID_BINDER_IPC_32BIT
Laura Abbott (1):
staging: ion: Fix debugfs handling of multiple kernel clients
Mitchel Humpherys (4):
staging: ion: Create separate heap and client debugfs directories
staging: ion: Store a copy of the client name on client creation
staging: ion: Make sure all clients are exposed in debugfs
staging: ion: Add private buffer flag to skip page pooling on free
Serban Constantinescu (1):
staging: binder: Fix ABI for 64bit Android
drivers/staging/android/Kconfig | 13 +
drivers/staging/android/android_alarm.h | 44 +---
drivers/staging/android/ashmem.h | 30 +--
drivers/staging/android/binder.c | 271 +++++++++++---------
drivers/staging/android/binder.h | 308 +---------------------
drivers/staging/android/binder_trace.h | 14 +-
drivers/staging/android/ion/ion.c | 121 +++++++--
drivers/staging/android/ion/ion_heap.c | 65 ++++-
drivers/staging/android/ion/ion_page_pool.c | 8 +-
drivers/staging/android/ion/ion_priv.h | 63 ++++-
drivers/staging/android/ion/ion_system_heap.c | 84 ++----
drivers/staging/android/sw_sync.h | 20 +-
drivers/staging/android/sync.h | 86 +------
drivers/staging/android/uapi/android_alarm.h | 62 +++++
drivers/staging/android/uapi/ashmem.h | 47 ++++
drivers/staging/android/uapi/binder.h | 351 ++++++++++++++++++++++++++
drivers/staging/android/uapi/sw_sync.h | 32 +++
drivers/staging/android/uapi/sync.h | 97 +++++++
18 files changed, 1014 insertions(+), 702 deletions(-)
create mode 100644 drivers/staging/android/uapi/android_alarm.h
create mode 100644 drivers/staging/android/uapi/ashmem.h
create mode 100644 drivers/staging/android/uapi/binder.h
create mode 100644 drivers/staging/android/uapi/sw_sync.h
create mode 100644 drivers/staging/android/uapi/sync.h
--
1.8.3.2
next reply other threads:[~2014-02-17 21:58 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-17 21:58 John Stultz [this message]
2014-02-17 21:58 ` [PATCH 01/14] staging: binder: Fix death notifications John Stultz
2014-02-18 19:02 ` Greg KH
2014-02-18 19:21 ` John Stultz
2014-02-18 19:33 ` Greg KH
2014-02-17 21:58 ` [PATCH 02/14] staging: android: Split uapi out of android_alarm.h John Stultz
2014-02-17 21:58 ` [PATCH 03/14] staging: android: Split uapi out of ashmem.h John Stultz
2014-02-17 21:58 ` [PATCH 04/14] staging: android: split uapi out of sync.h and sw_sync.h John Stultz
2014-02-17 21:58 ` [PATCH 05/14] staging: android: Split uapi out of binder.h John Stultz
2014-02-17 21:58 ` [PATCH 06/14] staging: ion: Create separate heap and client debugfs directories John Stultz
2014-02-17 21:58 ` [PATCH 07/14] staging: ion: Fix debugfs handling of multiple kernel clients John Stultz
2014-02-17 21:58 ` [PATCH 08/14] staging: ion: Store a copy of the client name on client creation John Stultz
2014-02-17 21:58 ` [PATCH 09/14] staging: ion: Make sure all clients are exposed in debugfs John Stultz
2014-02-17 21:58 ` [PATCH 10/14] staging: ion: Move shrinker out of heaps John Stultz
2014-02-17 21:58 ` [PATCH 11/14] staging: ion: Add private buffer flag to skip page pooling on free John Stultz
2014-02-17 21:58 ` [PATCH 12/14] staging: binder: Fix ABI for 64bit Android John Stultz
2014-02-18 19:08 ` Greg KH
2014-02-18 19:30 ` John Stultz
2014-02-18 19:49 ` Greg KH
2014-02-18 20:02 ` John Stultz
2014-02-18 20:32 ` Greg KH
2014-02-19 0:08 ` Arve Hjønnevåg
2014-02-19 2:13 ` Greg KH
2014-02-17 21:58 ` [PATCH 13/14] staging: binder: Support concurrent 32 bit and 64 bit processes John Stultz
2014-02-18 19:09 ` Greg KH
2014-02-18 19:10 ` Greg KH
2014-02-18 19:43 ` John Stultz
2014-02-17 21:58 ` [PATCH 14/14] staging: binder: Improve Kconfig entry for ANDROID_BINDER_IPC_32BIT John Stultz
2014-02-19 0:18 ` Arve Hjønnevåg
2014-02-19 0:30 ` John Stultz
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=1392674322-9036-1-git-send-email-john.stultz@linaro.org \
--to=john.stultz@linaro.org \
--cc=arve@android.com \
--cc=ccross@android.com \
--cc=gregkh@linuxfoundation.org \
--cc=kernel-team@android.com \
--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
Powered by JetHome