diff options
author | Serban Constantinescu <serban.constantinescu@arm.com> | 2013-07-04 10:54:44 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-23 14:37:21 -0700 |
commit | a9350fc859ae3f1db7f2efd55c7a3e0d09a4098d (patch) | |
tree | e9087850a338f92190a76c59d02c0b3af2744e8f | |
parent | 397334fc2be6a7e2f77474bd2b24880efea007bf (diff) | |
download | linux-a9350fc859ae3f1db7f2efd55c7a3e0d09a4098d.tar.gz linux-a9350fc859ae3f1db7f2efd55c7a3e0d09a4098d.tar.bz2 linux-a9350fc859ae3f1db7f2efd55c7a3e0d09a4098d.zip |
staging: android: binder: fix BINDER_SET_MAX_THREADS declaration
This change will fix the BINDER_SET_MAX_THREADS ioctl to use __u32
instead of size_t for setting the max threads. Thus using the same
handler for 32 and 64bit kernels.
This value is stored internally in struct binder_proc and set to 15
on open_binder() in the libbinder API(thus no need for a 64bit size_t
on 64bit platforms).
The change does not affect existing 32bit ABI.
Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
Acked-by: Arve Hjønnevåg <arve@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/android/binder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/binder.h b/drivers/staging/android/binder.h index edab2491a1b7..6515dd2f3552 100644 --- a/drivers/staging/android/binder.h +++ b/drivers/staging/android/binder.h @@ -86,7 +86,7 @@ struct binder_version { #define BINDER_WRITE_READ _IOWR('b', 1, struct binder_write_read) #define BINDER_SET_IDLE_TIMEOUT _IOW('b', 3, __s64) -#define BINDER_SET_MAX_THREADS _IOW('b', 5, size_t) +#define BINDER_SET_MAX_THREADS _IOW('b', 5, __u32) #define BINDER_SET_IDLE_PRIORITY _IOW('b', 6, __s32) #define BINDER_SET_CONTEXT_MGR _IOW('b', 7, __s32) #define BINDER_THREAD_EXIT _IOW('b', 8, __s32) |