* [PATCH 1/2] Staging: android: ion: fixes use of typedef
@ 2016-05-07 20:22 Thimo Braker
2016-05-08 2:46 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Thimo Braker @ 2016-05-07 20:22 UTC (permalink / raw)
To: gregkh
Cc: labbott, sumit.semwal, arve, riandrews, devel, linux-kernel,
Thimo Braker
Fixes a checkpatch.pl warning about 'do not add new typedefs'
Signed-off-by: Thimo Braker <thibmorozier@gmail.com>
---
drivers/staging/android/uapi/ion.h | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/android/uapi/ion.h b/drivers/staging/android/uapi/ion.h
index 0a8e40f..77a46f0 100644
--- a/drivers/staging/android/uapi/ion.h
+++ b/drivers/staging/android/uapi/ion.h
@@ -20,8 +20,6 @@
#include <linux/ioctl.h>
#include <linux/types.h>
-typedef int ion_user_handle_t;
-
/**
* enum ion_heap_types - list of all possible types of heaps
* @ION_HEAP_TYPE_SYSTEM: memory allocated via vmalloc
@@ -95,7 +93,7 @@ struct ion_allocation_data {
size_t align;
unsigned int heap_id_mask;
unsigned int flags;
- ion_user_handle_t handle;
+ int handle;
};
/**
@@ -109,7 +107,7 @@ struct ion_allocation_data {
* provides the file descriptor and the kernel returns the handle.
*/
struct ion_fd_data {
- ion_user_handle_t handle;
+ int handle;
int fd;
};
@@ -118,7 +116,7 @@ struct ion_fd_data {
* @handle: a handle
*/
struct ion_handle_data {
- ion_user_handle_t handle;
+ int handle;
};
/**
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] Staging: android: ion: fixes use of typedef
2016-05-07 20:22 [PATCH 1/2] Staging: android: ion: fixes use of typedef Thimo Braker
@ 2016-05-08 2:46 ` Greg KH
2016-05-08 10:43 ` Thimo Braker
0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2016-05-08 2:46 UTC (permalink / raw)
To: Thimo Braker; +Cc: devel, arve, linux-kernel, riandrews, sumit.semwal
On Sat, May 07, 2016 at 03:22:03PM -0500, Thimo Braker wrote:
> Fixes a checkpatch.pl warning about 'do not add new typedefs'
>
> Signed-off-by: Thimo Braker <thibmorozier@gmail.com>
> ---
> drivers/staging/android/uapi/ion.h | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/android/uapi/ion.h b/drivers/staging/android/uapi/ion.h
> index 0a8e40f..77a46f0 100644
> --- a/drivers/staging/android/uapi/ion.h
> +++ b/drivers/staging/android/uapi/ion.h
> @@ -20,8 +20,6 @@
> #include <linux/ioctl.h>
> #include <linux/types.h>
>
> -typedef int ion_user_handle_t;
> -
You just broke userspace :(
Sorry, you can't do this, be careful when touching files that cross the
user/kernel boundry (hint, they have uapi in the path), you have to know
exactly what you are doing when you do that.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] Staging: android: ion: fixes use of typedef
2016-05-08 2:46 ` Greg KH
@ 2016-05-08 10:43 ` Thimo Braker
0 siblings, 0 replies; 3+ messages in thread
From: Thimo Braker @ 2016-05-08 10:43 UTC (permalink / raw)
To: Greg KH; +Cc: devel, arve, linux-kernel, riandrews, sumit.semwal
On 8-5-2016 4:46, Greg KH wrote:
> You just broke userspace :(
> [..]
> (hint, they have uapi in the path)
I see I need to get used to some names ( now you say it, Uapi is quite
logical ).
Thanks for the feedback.
Thimo B.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-05-08 10:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-07 20:22 [PATCH 1/2] Staging: android: ion: fixes use of typedef Thimo Braker
2016-05-08 2:46 ` Greg KH
2016-05-08 10:43 ` Thimo Braker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox