[PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Michael Ellerman
kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman --- include/linux/kcmp.h | 17 - include/uapi/linux/Kbuild | 1 + include/uapi/linux/kcmp.h

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Michael Ellerman
On Mon, 2014-12-01 at 10:00 -0700, Shuah Khan wrote: > On 11/27/2014 07:18 PM, Michael Ellerman wrote: > > On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: > >> kcmp.h appears to be part of the API, it's documented in kcmp(2), and > >> the selftests/kcmp code uses it. So move it to uapi

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Shuah Khan
On 11/27/2014 07:18 PM, Michael Ellerman wrote: > On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: >> kcmp.h appears to be part of the API, it's documented in kcmp(2), and >> the selftests/kcmp code uses it. So move it to uapi so it's actually >> exported. > > Looks like this series

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Shuah Khan
On 10/23/2014 02:14 AM, Cyrill Gorcunov wrote: > On Thu, Oct 23, 2014 at 09:49:14AM +0200, Arnd Bergmann wrote: >> On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: >>> --- a/include/linux/kcmp.h >>> +++ b/include/linux/kcmp.h >>> @@ -1,17 +1,6 @@ >>> #ifndef _LINUX_KCMP_H >>> #define

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Michael Ellerman
On Mon, 2014-12-01 at 10:00 -0700, Shuah Khan wrote: On 11/27/2014 07:18 PM, Michael Ellerman wrote: On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's

[PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Michael Ellerman
kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman m...@ellerman.id.au --- include/linux/kcmp.h | 17 - include/uapi/linux/Kbuild | 1 +

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Shuah Khan
On 10/23/2014 02:14 AM, Cyrill Gorcunov wrote: On Thu, Oct 23, 2014 at 09:49:14AM +0200, Arnd Bergmann wrote: On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: --- a/include/linux/kcmp.h +++ b/include/linux/kcmp.h @@ -1,17 +1,6 @@ #ifndef _LINUX_KCMP_H #define _LINUX_KCMP_H

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-12-01 Thread Shuah Khan
On 11/27/2014 07:18 PM, Michael Ellerman wrote: On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Looks like this series fell through

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-11-27 Thread Michael Ellerman
On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: > kcmp.h appears to be part of the API, it's documented in kcmp(2), and > the selftests/kcmp code uses it. So move it to uapi so it's actually > exported. Looks like this series fell through the cracks? It still applies on rc6. Should I

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-11-27 Thread Michael Ellerman
On Thu, 2014-10-23 at 16:07 +1100, Michael Ellerman wrote: kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Looks like this series fell through the cracks? It still applies on rc6. Should I

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Cyrill Gorcunov
On Thu, Oct 23, 2014 at 09:49:14AM +0200, Arnd Bergmann wrote: > On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: > > --- a/include/linux/kcmp.h > > +++ b/include/linux/kcmp.h > > @@ -1,17 +1,6 @@ > > #ifndef _LINUX_KCMP_H > > #define _LINUX_KCMP_H > > > > -/* Comparison type */ >

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Arnd Bergmann
On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: > --- a/include/linux/kcmp.h > +++ b/include/linux/kcmp.h > @@ -1,17 +1,6 @@ > #ifndef _LINUX_KCMP_H > #define _LINUX_KCMP_H > > -/* Comparison type */ > -enum kcmp_type { > - KCMP_FILE, > - KCMP_VM, > - KCMP_FILES,

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Cyrill Gorcunov
On Thu, Oct 23, 2014 at 04:07:12PM +1100, Michael Ellerman wrote: > kcmp.h appears to be part of the API, it's documented in kcmp(2), and > the selftests/kcmp code uses it. So move it to uapi so it's actually > exported. > > Signed-off-by: Michael Ellerman Acked-by: Cyrill Gorcunov -- To

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Cyrill Gorcunov
On Thu, Oct 23, 2014 at 04:07:12PM +1100, Michael Ellerman wrote: kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman m...@ellerman.id.au Acked-by: Cyrill Gorcunov

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Arnd Bergmann
On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: --- a/include/linux/kcmp.h +++ b/include/linux/kcmp.h @@ -1,17 +1,6 @@ #ifndef _LINUX_KCMP_H #define _LINUX_KCMP_H -/* Comparison type */ -enum kcmp_type { - KCMP_FILE, - KCMP_VM, - KCMP_FILES, -

Re: [PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-23 Thread Cyrill Gorcunov
On Thu, Oct 23, 2014 at 09:49:14AM +0200, Arnd Bergmann wrote: On Thursday 23 October 2014 16:07:12 Michael Ellerman wrote: --- a/include/linux/kcmp.h +++ b/include/linux/kcmp.h @@ -1,17 +1,6 @@ #ifndef _LINUX_KCMP_H #define _LINUX_KCMP_H -/* Comparison type */ -enum kcmp_type

[PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-22 Thread Michael Ellerman
kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman --- include/linux/kcmp.h | 13 + include/uapi/linux/Kbuild | 1 + include/uapi/linux/kcmp.h | 17

[PATCH 1/3] kcmp: Move kcmp.h into uapi

2014-10-22 Thread Michael Ellerman
kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman m...@ellerman.id.au --- include/linux/kcmp.h | 13 + include/uapi/linux/Kbuild | 1 +