All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: peterz@infradead.org
Cc: arnd@arndb.de
Cc: dhowells@redhat.com
Cc: viro@zeniv.linux.org.uk
Cc: ast@plumgrid.com
Cc: aishchuk@linux.vnet.ibm.com
Cc: aarcange@redhat.com
Cc: akpm@linux-foundation.org
Cc: luto@kernel.org
Cc: acme@kernel.org
Cc: bhe@redhat.com
Cc: 3chas3@gmail.com
Cc: chris@zankel.net
Cc: dave@sr71.net
Cc: dyoung@redhat.com
Cc: drysdale@google.com
Cc: davem@davemloft.net
Cc: ebiederm@xmission.com
Cc: geoff@infradead.org
Cc: gregkh@linuxfoundation.org
Cc: hpa@zytor.com
Cc: mingo@kernel.org
Cc: iulia.manda21@gmail.com
Cc: plagnioj@jcrosoft.com
Cc: jikos@kernel.org
Cc: josh@joshtriplett.org
Cc: kexec@lists.infradead.org
Cc: linux-api@vger.kernel.org
Cc: linux-arch@vger.kernel.org
Cc: linux-fsdevel@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: mathieu.desnoyers@efficios.com
Cc: jcmvbkbc@gmail.com
Cc: paulmck@linux.vnet.ibm.com
Cc: tglx@linutronix.de
Cc: tomi.valkeinen@ti.com
Cc: vgoyal@redhat.com
Cc: x86@kernel.org
Cc: fweisbec@gmail.com
Subject: Re: [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c
Date: Wed, 16 Sep 2015 20:56:00 -0700 (PDT)	[thread overview]
Message-ID: <55fa39d0.2c1b450a.6854.4115@mx.google.com> (raw)
In-Reply-To: <20150915193910.GH16853@twins.programming.kicks-ass.net>

On Tue, 15 Sep 2015 12:39:10 PDT (-0700), peterz@infradead.org wrote:
> On Tue, Sep 15, 2015 at 11:40:11AM -0700, Palmer Dabbelt wrote:
>> On Tue, 15 Sep 2015 01:06:07 PDT (-0700), peterz@infradead.org wrote:
>> > On Mon, Sep 14, 2015 at 03:50:43PM -0700, Palmer Dabbelt wrote:
>> >> This has a "#ifdef CONFIG_*" that used to be exposed to userspace.
>> >>
>> >> The names in here are so generic that I don't think it's a good idea
>> >> to expose them to userspace (or even the rest of the kernel).  Since
>> >> there's only one kernel user, it's been moved to that file.
>> >>
>> >> Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
>> >> Reviewed-by: Andrew Waterman <waterman@eecs.berkeley.edu>
>> >> Reviewed-by: Albert Ou <aou@eecs.berkeley.edu>
>> >> ---
>> >>  include/uapi/linux/hw_breakpoint.h | 10 ----------
>> >>  kernel/events/hw_breakpoint.c      | 10 ++++++++++
>> >>  2 files changed, 10 insertions(+), 10 deletions(-)
>> >>
>> >> diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h
>> >> index b04000a2296a..7a6a5a7f9511 100644
>> >> --- a/include/uapi/linux/hw_breakpoint.h
>> >> +++ b/include/uapi/linux/hw_breakpoint.h
>> >> @@ -17,14 +17,4 @@ enum {
>> >>  	HW_BREAKPOINT_INVALID   = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
>> >>  };
>> >>
>> >> -enum bp_type_idx {
>> >> -	TYPE_INST 	= 0,
>> >> -#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS
>> >> -	TYPE_DATA	= 0,
>> >> -#else
>> >> -	TYPE_DATA	= 1,
>> >> -#endif
>> >> -	TYPE_MAX
>> >> -};
>> >
>> > This is rather unfortunate; you are correct that the naming is too
>> > generic (and I tend to agree), but I think these values are required by
>> > userspace to fill out:
>> >
>> >   perf_event_attr::bp_type
>> >
>> > So removing them will break things.
>> >
>> > Frederic?
>>
>> perf_event_open(2) says
>>
>>        bp_type (since Linux 2.6.33)
>>               This chooses the breakpoint type.  It is one of:
>>
>>               HW_BREAKPOINT_EMPTY
>>                      No breakpoint.
>>
>>               HW_BREAKPOINT_R
>>                      Count when we read the memory location.
>>
>>               HW_BREAKPOINT_W
>>                      Count when we write the memory location.
>>
>>               HW_BREAKPOINT_RW
>>                      Count when we read or write the memory location.
>>
>>               HW_BREAKPOINT_X
>>                      Count when we execute code at the memory location.
>>
>>               The values can be combined via a bitwise or, but the combination
>>               of HW_BREAKPOINT_R or HW_BREAKPOINT_W  with  HW_BREAKPOINT_X  is
>>               not allowed.
>>
>> so I think removing this enum from userspace is OK.  Did I miss
>> something?
>
> Nah, could've just been me not being awake. Unless Frederic says
> otherwise I'll chalk it up to not having drank enough morning juice.

Well, I'm going to leave this alone, then -- as Arnd pointed out in a
later email that got mis-threaded, this would be super tricky to fix
if userspace actually relied on it (which is why I was scared I was
wrong).

v4 (which is hopefully the final version of the patch set) will leave
this as it is.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
To: peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org
Cc: arnd-r2nGTMty4D4@public.gmane.org
Cc: dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org
Cc: ast-uqk4Ao+rVK5Wk0Htik3J/w@public.gmane.org
Cc: aishchuk-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org
Cc: aarcange-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org
Cc: luto-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: acme-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: bhe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: 3chas3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Cc: chris-YvXeqwSYzG2sTnJN9+BGXg@public.gmane.org
Cc: dave-gkUM19QKKo4@public.gmane.org
Cc: dyoung-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: drysdale-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org
Cc: davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org
Cc: ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org
Cc: geoff-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org
Cc: gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org
Cc: hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org
Cc: mingo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: iulia.manda21-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Cc: plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org
Cc: jikos-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: josh-iaAMLnmF4UmaiuxdJuQwMA@public.gmane.org
Cc: kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-xtensa-PjhNF2WwrV/0Sa2dR60CXw@public.gmane.org
Cc: mathieu.desnoyers-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org
Cc: jcmvbkbc-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Cc: paulmck-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org
Cc: tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org
Cc: tomi.valkeinen-l0cyMroinI0@public.gmane.org
Cc: vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: x86-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: fweisbec-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Subject: Re: [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c
Date: Wed, 16 Sep 2015 20:56:00 -0700 (PDT)	[thread overview]
Message-ID: <55fa39d0.2c1b450a.6854.4115@mx.google.com> (raw)
In-Reply-To: <20150915193910.GH16853-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>

On Tue, 15 Sep 2015 12:39:10 PDT (-0700), peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org wrote:
> On Tue, Sep 15, 2015 at 11:40:11AM -0700, Palmer Dabbelt wrote:
>> On Tue, 15 Sep 2015 01:06:07 PDT (-0700), peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org wrote:
>> > On Mon, Sep 14, 2015 at 03:50:43PM -0700, Palmer Dabbelt wrote:
>> >> This has a "#ifdef CONFIG_*" that used to be exposed to userspace.
>> >>
>> >> The names in here are so generic that I don't think it's a good idea
>> >> to expose them to userspace (or even the rest of the kernel).  Since
>> >> there's only one kernel user, it's been moved to that file.
>> >>
>> >> Signed-off-by: Palmer Dabbelt <palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
>> >> Reviewed-by: Andrew Waterman <waterman-aFE07iDfcCIb0cFwG/AQJIdd74u8MsAO@public.gmane.org>
>> >> Reviewed-by: Albert Ou <aou-aFE07iDfcCIb0cFwG/AQJIdd74u8MsAO@public.gmane.org>
>> >> ---
>> >>  include/uapi/linux/hw_breakpoint.h | 10 ----------
>> >>  kernel/events/hw_breakpoint.c      | 10 ++++++++++
>> >>  2 files changed, 10 insertions(+), 10 deletions(-)
>> >>
>> >> diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h
>> >> index b04000a2296a..7a6a5a7f9511 100644
>> >> --- a/include/uapi/linux/hw_breakpoint.h
>> >> +++ b/include/uapi/linux/hw_breakpoint.h
>> >> @@ -17,14 +17,4 @@ enum {
>> >>  	HW_BREAKPOINT_INVALID   = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
>> >>  };
>> >>
>> >> -enum bp_type_idx {
>> >> -	TYPE_INST 	= 0,
>> >> -#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS
>> >> -	TYPE_DATA	= 0,
>> >> -#else
>> >> -	TYPE_DATA	= 1,
>> >> -#endif
>> >> -	TYPE_MAX
>> >> -};
>> >
>> > This is rather unfortunate; you are correct that the naming is too
>> > generic (and I tend to agree), but I think these values are required by
>> > userspace to fill out:
>> >
>> >   perf_event_attr::bp_type
>> >
>> > So removing them will break things.
>> >
>> > Frederic?
>>
>> perf_event_open(2) says
>>
>>        bp_type (since Linux 2.6.33)
>>               This chooses the breakpoint type.  It is one of:
>>
>>               HW_BREAKPOINT_EMPTY
>>                      No breakpoint.
>>
>>               HW_BREAKPOINT_R
>>                      Count when we read the memory location.
>>
>>               HW_BREAKPOINT_W
>>                      Count when we write the memory location.
>>
>>               HW_BREAKPOINT_RW
>>                      Count when we read or write the memory location.
>>
>>               HW_BREAKPOINT_X
>>                      Count when we execute code at the memory location.
>>
>>               The values can be combined via a bitwise or, but the combination
>>               of HW_BREAKPOINT_R or HW_BREAKPOINT_W  with  HW_BREAKPOINT_X  is
>>               not allowed.
>>
>> so I think removing this enum from userspace is OK.  Did I miss
>> something?
>
> Nah, could've just been me not being awake. Unless Frederic says
> otherwise I'll chalk it up to not having drank enough morning juice.

Well, I'm going to leave this alone, then -- as Arnd pointed out in a
later email that got mis-threaded, this would be super tricky to fix
if userspace actually relied on it (which is why I was scared I was
wrong).

v4 (which is hopefully the final version of the patch set) will leave
this as it is.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
To: peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org
Cc: arnd-r2nGTMty4D4@public.gmane.org,
	dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org,
	ast-uqk4Ao+rVK5Wk0Htik3J/w@public.gmane.org,
	aishchuk-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org,
	aarcange-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org,
	luto-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	acme-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	bhe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	3chas3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	chris-YvXeqwSYzG2sTnJN9+BGXg@public.gmane.org,
	dave-gkUM19QKKo4@public.gmane.org,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	drysdale-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org,
	ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org,
	geoff-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org,
	hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org,
	mingo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	iulia.manda21-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org,
	jikos-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	josh-iaAMLnmF4UmaiuxdJuQwMA@public.gmane.org,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-xtensa-PjhNF2WwrV/0Sa2dR60CXw@public.gmane.org,
	mathieu.desnoyers-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org,
	jcmvbkbc-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	paulmck-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org,
	tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org,
	tomi.valkeinen-l0cyMroinI0@public.gmane.org,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	x86-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	fweisbec-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Subject: Re: [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c
Date: Wed, 16 Sep 2015 20:56:00 -0700 (PDT)	[thread overview]
Message-ID: <55fa39d0.2c1b450a.6854.4115@mx.google.com> (raw)
In-Reply-To: <20150915193910.GH16853-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>

On Tue, 15 Sep 2015 12:39:10 PDT (-0700), peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org wrote:
> On Tue, Sep 15, 2015 at 11:40:11AM -0700, Palmer Dabbelt wrote:
>> On Tue, 15 Sep 2015 01:06:07 PDT (-0700), peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org wrote:
>> > On Mon, Sep 14, 2015 at 03:50:43PM -0700, Palmer Dabbelt wrote:
>> >> This has a "#ifdef CONFIG_*" that used to be exposed to userspace.
>> >>
>> >> The names in here are so generic that I don't think it's a good idea
>> >> to expose them to userspace (or even the rest of the kernel).  Since
>> >> there's only one kernel user, it's been moved to that file.
>> >>
>> >> Signed-off-by: Palmer Dabbelt <palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
>> >> Reviewed-by: Andrew Waterman <waterman-aFE07iDfcCIb0cFwG/AQJIdd74u8MsAO@public.gmane.org>
>> >> Reviewed-by: Albert Ou <aou-aFE07iDfcCIb0cFwG/AQJIdd74u8MsAO@public.gmane.org>
>> >> ---
>> >>  include/uapi/linux/hw_breakpoint.h | 10 ----------
>> >>  kernel/events/hw_breakpoint.c      | 10 ++++++++++
>> >>  2 files changed, 10 insertions(+), 10 deletions(-)
>> >>
>> >> diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h
>> >> index b04000a2296a..7a6a5a7f9511 100644
>> >> --- a/include/uapi/linux/hw_breakpoint.h
>> >> +++ b/include/uapi/linux/hw_breakpoint.h
>> >> @@ -17,14 +17,4 @@ enum {
>> >>  	HW_BREAKPOINT_INVALID   = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
>> >>  };
>> >>
>> >> -enum bp_type_idx {
>> >> -	TYPE_INST 	= 0,
>> >> -#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS
>> >> -	TYPE_DATA	= 0,
>> >> -#else
>> >> -	TYPE_DATA	= 1,
>> >> -#endif
>> >> -	TYPE_MAX
>> >> -};
>> >
>> > This is rather unfortunate; you are correct that the naming is too
>> > generic (and I tend to agree), but I think these values are required by
>> > userspace to fill out:
>> >
>> >   perf_event_attr::bp_type
>> >
>> > So removing them will break things.
>> >
>> > Frederic?
>>
>> perf_event_open(2) says
>>
>>        bp_type (since Linux 2.6.33)
>>               This chooses the breakpoint type.  It is one of:
>>
>>               HW_BREAKPOINT_EMPTY
>>                      No breakpoint.
>>
>>               HW_BREAKPOINT_R
>>                      Count when we read the memory location.
>>
>>               HW_BREAKPOINT_W
>>                      Count when we write the memory location.
>>
>>               HW_BREAKPOINT_RW
>>                      Count when we read or write the memory location.
>>
>>               HW_BREAKPOINT_X
>>                      Count when we execute code at the memory location.
>>
>>               The values can be combined via a bitwise or, but the combination
>>               of HW_BREAKPOINT_R or HW_BREAKPOINT_W  with  HW_BREAKPOINT_X  is
>>               not allowed.
>>
>> so I think removing this enum from userspace is OK.  Did I miss
>> something?
>
> Nah, could've just been me not being awake. Unless Frederic says
> otherwise I'll chalk it up to not having drank enough morning juice.

Well, I'm going to leave this alone, then -- as Arnd pointed out in a
later email that got mis-threaded, this would be super tricky to fix
if userspace actually relied on it (which is why I was scared I was
wrong).

v4 (which is hopefully the final version of the patch set) will leave
this as it is.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: peterz@infradead.org
Cc: arnd@arndb.de, dhowells@redhat.com, viro@zeniv.linux.org.uk,
	ast@plumgrid.com, aishchuk@linux.vnet.ibm.com,
	aarcange@redhat.com, akpm@linux-foundation.org, luto@kernel.org,
	acme@kernel.org, bhe@redhat.com, 3chas3@gmail.com,
	chris@zankel.net, dave@sr71.net, dyoung@redhat.com,
	drysdale@google.com, davem@davemloft.net, ebiederm@xmission.com,
	geoff@infradead.org, gregkh@linuxfoundation.org, hpa@zytor.com,
	mingo@kernel.org, iulia.manda21@gmail.com, plagnioj@jcrosoft.com,
	jikos@kernel.org, josh@joshtriplett.org,
	kexec@lists.infradead.org, linux-api@vger.kernel.org,
	linux-arch@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	mathieu.desnoyers@efficios.com, jcmvbkbc@gmail.com,
	paulmck@linux.vnet.ibm.com, tglx@linutronix.de,
	tomi.valkeinen@ti.com, vgoyal@redhat.com, x86@kernel.org,
	fweisbec@gmail.com
Subject: Re: [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c
Date: Wed, 16 Sep 2015 20:56:00 -0700 (PDT)	[thread overview]
Message-ID: <55fa39d0.2c1b450a.6854.4115@mx.google.com> (raw)
Message-ID: <20150917035600.c-5U6HkXKs0rppyN4zQJmogTYUeKtKt-onlkTFKzI2g@z> (raw)
In-Reply-To: <20150915193910.GH16853@twins.programming.kicks-ass.net>

On Tue, 15 Sep 2015 12:39:10 PDT (-0700), peterz@infradead.org wrote:
> On Tue, Sep 15, 2015 at 11:40:11AM -0700, Palmer Dabbelt wrote:
>> On Tue, 15 Sep 2015 01:06:07 PDT (-0700), peterz@infradead.org wrote:
>> > On Mon, Sep 14, 2015 at 03:50:43PM -0700, Palmer Dabbelt wrote:
>> >> This has a "#ifdef CONFIG_*" that used to be exposed to userspace.
>> >>
>> >> The names in here are so generic that I don't think it's a good idea
>> >> to expose them to userspace (or even the rest of the kernel).  Since
>> >> there's only one kernel user, it's been moved to that file.
>> >>
>> >> Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
>> >> Reviewed-by: Andrew Waterman <waterman@eecs.berkeley.edu>
>> >> Reviewed-by: Albert Ou <aou@eecs.berkeley.edu>
>> >> ---
>> >>  include/uapi/linux/hw_breakpoint.h | 10 ----------
>> >>  kernel/events/hw_breakpoint.c      | 10 ++++++++++
>> >>  2 files changed, 10 insertions(+), 10 deletions(-)
>> >>
>> >> diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h
>> >> index b04000a2296a..7a6a5a7f9511 100644
>> >> --- a/include/uapi/linux/hw_breakpoint.h
>> >> +++ b/include/uapi/linux/hw_breakpoint.h
>> >> @@ -17,14 +17,4 @@ enum {
>> >>  	HW_BREAKPOINT_INVALID   = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
>> >>  };
>> >>
>> >> -enum bp_type_idx {
>> >> -	TYPE_INST 	= 0,
>> >> -#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS
>> >> -	TYPE_DATA	= 0,
>> >> -#else
>> >> -	TYPE_DATA	= 1,
>> >> -#endif
>> >> -	TYPE_MAX
>> >> -};
>> >
>> > This is rather unfortunate; you are correct that the naming is too
>> > generic (and I tend to agree), but I think these values are required by
>> > userspace to fill out:
>> >
>> >   perf_event_attr::bp_type
>> >
>> > So removing them will break things.
>> >
>> > Frederic?
>>
>> perf_event_open(2) says
>>
>>        bp_type (since Linux 2.6.33)
>>               This chooses the breakpoint type.  It is one of:
>>
>>               HW_BREAKPOINT_EMPTY
>>                      No breakpoint.
>>
>>               HW_BREAKPOINT_R
>>                      Count when we read the memory location.
>>
>>               HW_BREAKPOINT_W
>>                      Count when we write the memory location.
>>
>>               HW_BREAKPOINT_RW
>>                      Count when we read or write the memory location.
>>
>>               HW_BREAKPOINT_X
>>                      Count when we execute code at the memory location.
>>
>>               The values can be combined via a bitwise or, but the combination
>>               of HW_BREAKPOINT_R or HW_BREAKPOINT_W  with  HW_BREAKPOINT_X  is
>>               not allowed.
>>
>> so I think removing this enum from userspace is OK.  Did I miss
>> something?
>
> Nah, could've just been me not being awake. Unless Frederic says
> otherwise I'll chalk it up to not having drank enough morning juice.

Well, I'm going to leave this alone, then -- as Arnd pointed out in a
later email that got mis-threaded, this would be super tricky to fix
if userspace actually relied on it (which is why I was scared I was
wrong).

v4 (which is hopefully the final version of the patch set) will leave
this as it is.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: peterz@infradead.org
Cc: dave@sr71.net, linux-xtensa@linux-xtensa.org, fweisbec@gmail.com,
	dhowells@redhat.com, jcmvbkbc@gmail.com, hpa@zytor.com,
	mingo@kernel.org, ast@plumgrid.com, aarcange@redhat.com,
	bhe@redhat.com, x86@kernel.org, tomi.valkeinen@ti.com,
	3chas3@gmail.com, paulmck@linux.vnet.ibm.com, dyoung@redhat.com,
	vgoyal@redhat.com, aishchuk@linux.vnet.ibm.com,
	linux-arch@vger.kernel.org, jikos@kernel.org, arnd@arndb.de,
	plagnioj@jcrosoft.com, josh@joshtriplett.org, acme@kernel.org,
	mathieu.desnoyers@efficios.com, viro@zeniv.linux.org.uk,
	luto@kernel.org, tglx@linutronix.de, drysdale@google.com,
	chris@zankel.net, iulia.manda21@gmail.com, geoff@infradead.org,
	gregkh@linuxfoundation.org, kexec@lists.infradead.org,
	linux-kernel@vger.kernel.org, ebiederm@xmission.com,
	linux-api@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	akpm@linux-foundation.org, davem@davemloft.net
Subject: Re: [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c
Date: Wed, 16 Sep 2015 20:56:00 -0700 (PDT)	[thread overview]
Message-ID: <55fa39d0.2c1b450a.6854.4115@mx.google.com> (raw)
In-Reply-To: <20150915193910.GH16853@twins.programming.kicks-ass.net>

On Tue, 15 Sep 2015 12:39:10 PDT (-0700), peterz@infradead.org wrote:
> On Tue, Sep 15, 2015 at 11:40:11AM -0700, Palmer Dabbelt wrote:
>> On Tue, 15 Sep 2015 01:06:07 PDT (-0700), peterz@infradead.org wrote:
>> > On Mon, Sep 14, 2015 at 03:50:43PM -0700, Palmer Dabbelt wrote:
>> >> This has a "#ifdef CONFIG_*" that used to be exposed to userspace.
>> >>
>> >> The names in here are so generic that I don't think it's a good idea
>> >> to expose them to userspace (or even the rest of the kernel).  Since
>> >> there's only one kernel user, it's been moved to that file.
>> >>
>> >> Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
>> >> Reviewed-by: Andrew Waterman <waterman@eecs.berkeley.edu>
>> >> Reviewed-by: Albert Ou <aou@eecs.berkeley.edu>
>> >> ---
>> >>  include/uapi/linux/hw_breakpoint.h | 10 ----------
>> >>  kernel/events/hw_breakpoint.c      | 10 ++++++++++
>> >>  2 files changed, 10 insertions(+), 10 deletions(-)
>> >>
>> >> diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h
>> >> index b04000a2296a..7a6a5a7f9511 100644
>> >> --- a/include/uapi/linux/hw_breakpoint.h
>> >> +++ b/include/uapi/linux/hw_breakpoint.h
>> >> @@ -17,14 +17,4 @@ enum {
>> >>  	HW_BREAKPOINT_INVALID   = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
>> >>  };
>> >>
>> >> -enum bp_type_idx {
>> >> -	TYPE_INST 	= 0,
>> >> -#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS
>> >> -	TYPE_DATA	= 0,
>> >> -#else
>> >> -	TYPE_DATA	= 1,
>> >> -#endif
>> >> -	TYPE_MAX
>> >> -};
>> >
>> > This is rather unfortunate; you are correct that the naming is too
>> > generic (and I tend to agree), but I think these values are required by
>> > userspace to fill out:
>> >
>> >   perf_event_attr::bp_type
>> >
>> > So removing them will break things.
>> >
>> > Frederic?
>>
>> perf_event_open(2) says
>>
>>        bp_type (since Linux 2.6.33)
>>               This chooses the breakpoint type.  It is one of:
>>
>>               HW_BREAKPOINT_EMPTY
>>                      No breakpoint.
>>
>>               HW_BREAKPOINT_R
>>                      Count when we read the memory location.
>>
>>               HW_BREAKPOINT_W
>>                      Count when we write the memory location.
>>
>>               HW_BREAKPOINT_RW
>>                      Count when we read or write the memory location.
>>
>>               HW_BREAKPOINT_X
>>                      Count when we execute code at the memory location.
>>
>>               The values can be combined via a bitwise or, but the combination
>>               of HW_BREAKPOINT_R or HW_BREAKPOINT_W  with  HW_BREAKPOINT_X  is
>>               not allowed.
>>
>> so I think removing this enum from userspace is OK.  Did I miss
>> something?
>
> Nah, could've just been me not being awake. Unless Frederic says
> otherwise I'll chalk it up to not having drank enough morning juice.

Well, I'm going to leave this alone, then -- as Arnd pointed out in a
later email that got mis-threaded, this would be super tricky to fix
if userspace actually relied on it (which is why I was scared I was
wrong).

v4 (which is hopefully the final version of the patch set) will leave
this as it is.

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

  reply	other threads:[~2015-09-17  3:56 UTC|newest]

Thread overview: 607+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-02  0:10 [PATCH] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
2015-09-02  0:10 ` Palmer Dabbelt
2015-09-07 13:16 ` Arnd Bergmann
2015-09-07 13:35   ` Palmer Dabbelt
2015-09-07 13:35     ` Palmer Dabbelt
2015-09-07 13:59     ` Arnd Bergmann
2015-09-09 21:08       ` Palmer Dabbelt
2015-09-09 21:08         ` Palmer Dabbelt
2015-09-09 21:08         ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 01/13] " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 02/13] Always expose __SYSCALL(... fork ...) Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 03/13] Hide COMPAT_ATM_ADDPARTY behind #ifdef __KERNEL__ Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 05/13] Hide some of "struct elf_prstatus" behind #ifdef __KERNEL__ Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 06/13] Hide ep_take_care_of_epollwakeup() " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 08/13] Hide MAX_SHARED_LIBS behind #ifdef __KERNEL__ Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 09/13] Hide bp_type_idx " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 10/13] Hide USE_WCACHING " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 11/13] Hide MAX_RAW_MINORS " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 12/13] Hide AT_VECTOR_SIZE_ARCH " Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08         ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-09 21:08           ` Palmer Dabbelt
2015-09-10 11:11         ` [PATCH 09/13] Hide bp_type_idx behind #ifdef __KERNEL__ David Howells
2015-09-10 11:11           ` David Howells
2015-09-10 11:12         ` [PATCH 10/13] Hide USE_WCACHING " David Howells
2015-09-10 11:12           ` David Howells
2015-09-10 11:13         ` [PATCH 11/13] Hide MAX_RAW_MINORS " David Howells
2015-09-10 11:13           ` David Howells
2015-09-10 11:14         ` [PATCH 12/13] Hide AT_VECTOR_SIZE_ARCH " David Howells
2015-09-10 11:14           ` David Howells
     [not found]         ` <1441832902-28993-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
2015-09-14 22:50           ` [PATCH v3] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50         ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50         ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
     [not found]           ` <1442271047-4908-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 11/13] Always define MAX_RAW_MINORS as 65535 in userspace Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH v4] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-15  0:23             ` Kirill A. Shutemov
2015-09-15  0:23               ` Kirill A. Shutemov
2015-09-15  0:52               ` Palmer Dabbelt
2015-09-15  0:52                 ` Palmer Dabbelt
2015-09-15  0:52               ` Palmer Dabbelt
2015-09-15  0:52                 ` Palmer Dabbelt
2015-09-15  0:52               ` Palmer Dabbelt
2015-09-15  0:52                 ` Palmer Dabbelt
2015-09-15  0:52                 ` Palmer Dabbelt
     [not found]               ` <20150915002358.GA12618-nhfs4B5ZimeFUdmeq17FyvUpdFzICT1y@public.gmane.org>
2015-09-15  0:52                 ` Palmer Dabbelt
2015-09-15  0:52                   ` Palmer Dabbelt
2015-09-15  0:52                 ` Palmer Dabbelt
2015-09-15  0:52                   ` Palmer Dabbelt
2015-09-15  5:19               ` Josh Triplett
2015-09-15  5:19                 ` Josh Triplett
2015-09-15  5:19                 ` Josh Triplett
2015-09-15  9:42                 ` Kirill A. Shutemov
2015-09-15  9:42                   ` Kirill A. Shutemov
2015-09-15  9:42                   ` Kirill A. Shutemov
2015-09-15 14:07                   ` Josh Triplett
2015-09-15 14:07                     ` Josh Triplett
2015-09-17 10:13                   ` David Howells
2015-09-17 10:13                     ` David Howells
2015-09-17 10:13                     ` David Howells
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-15  8:06             ` Peter Zijlstra
2015-09-15  8:06               ` Peter Zijlstra
2015-09-15  8:06               ` Peter Zijlstra
2015-09-15  8:06               ` Peter Zijlstra
2015-09-15 18:40               ` Palmer Dabbelt
2015-09-15 18:40                 ` Palmer Dabbelt
2015-09-15 18:40                 ` Palmer Dabbelt
2015-09-15 19:39                 ` Peter Zijlstra
2015-09-15 19:39                   ` Peter Zijlstra
2015-09-17  3:56                   ` Palmer Dabbelt [this message]
2015-09-17  3:56                     ` Palmer Dabbelt
2015-09-17  3:56                     ` Palmer Dabbelt
2015-09-17  3:56                     ` Palmer Dabbelt
2015-09-17  3:56                     ` Palmer Dabbelt
2015-09-15 21:15               ` Arnd Bergmann
2015-09-24 12:15                 ` Frederic Weisbecker
2015-09-24 12:15                   ` Frederic Weisbecker
2015-09-17 10:28               ` David Howells
2015-09-17 10:28                 ` David Howells
2015-09-17 10:28                 ` David Howells
2015-09-14 22:50           ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 11/13] Always define MAX_RAW_MINORS as 65535 in userspace Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-15 20:42             ` H. Peter Anvin
2015-09-15 20:42               ` H. Peter Anvin
2015-09-15 20:42               ` H. Peter Anvin
2015-09-15 20:42               ` H. Peter Anvin
2015-09-15 20:42               ` H. Peter Anvin
2015-09-17  3:08               ` Palmer Dabbelt
2015-09-17  3:08                 ` Palmer Dabbelt
2015-09-17  3:08                 ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-14 22:50             ` Palmer Dabbelt
2015-09-17  9:57           ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c David Howells
2015-09-17  9:57             ` David Howells
2015-09-17 20:53             ` Palmer Dabbelt
2015-09-17 20:53               ` Palmer Dabbelt
2015-09-17 20:53               ` Palmer Dabbelt
2015-09-17 20:53               ` Palmer Dabbelt
2015-09-17 10:17           ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" David Howells
2015-09-17 10:17             ` David Howells
2015-11-03 19:46           ` [PATCH v4] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 21:28               ` kbuild test robot
2015-11-03 21:28                 ` kbuild test robot
2015-11-03 21:28                 ` kbuild test robot
2015-11-03 21:28                 ` kbuild test robot
2015-11-03 21:29               ` kbuild test robot
2015-11-03 21:29                 ` kbuild test robot
2015-11-03 21:29                 ` kbuild test robot
2015-11-03 21:29                 ` kbuild test robot
2015-11-04 11:41               ` Peter Zijlstra
2015-11-04 11:41                 ` Peter Zijlstra
2015-11-04 12:21                 ` Peter Zijlstra
2015-11-04 12:21                   ` Peter Zijlstra
2015-11-04 12:21                   ` Peter Zijlstra
2015-11-07  6:44                   ` Palmer Dabbelt
2015-11-07  6:44                     ` Palmer Dabbelt
2015-11-07  6:44                     ` Palmer Dabbelt
2015-11-07  6:44                     ` Palmer Dabbelt
2015-11-07  6:44                     ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 11/13] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 20:11               ` kbuild test robot
2015-11-03 20:11                 ` kbuild test robot
2015-11-03 20:11                 ` kbuild test robot
2015-11-03 20:11                 ` kbuild test robot
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
     [not found]             ` <1446579994-9937-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
2015-11-03 19:46               ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 11/13] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46                 ` Palmer Dabbelt
2015-11-10  1:30               ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-03 20:25               ` kbuild test robot
2015-11-03 20:25                 ` kbuild test robot
2015-11-03 20:25                 ` kbuild test robot
2015-11-03 20:25                 ` kbuild test robot
2015-11-03 20:26               ` kbuild test robot
2015-11-03 20:26                 ` kbuild test robot
2015-11-03 20:26                 ` kbuild test robot
2015-11-03 20:26                 ` kbuild test robot
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46               ` Palmer Dabbelt
2015-11-10  1:30             ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30             ` Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30               ` [PATCH 01/14] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
     [not found]               ` <1447119071-19392-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:30                   ` Palmer Dabbelt
2015-11-10  1:30                 ` [PATCH 02/14] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-11-10  1:30                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 03/14] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 04/14] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 05/14] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 06/14] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 07/14] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 08/14] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 09/14] Move bp_type_idx to include/linux/hw_breakpoint.h Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 12/14] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:31                 ` [PATCH 14/14] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-11-10  1:31                   ` Palmer Dabbelt
2015-11-10  1:30               ` [PATCH 02/14] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-10  1:30                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 03/14] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2023-02-10 14:55                 ` Thomas Huth
2023-02-10 15:10                   ` Arnd Bergmann
2015-11-10  1:31               ` [PATCH 04/14] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 05/14] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 06/14] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2023-02-10 14:45                 ` Thomas Huth
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 07/14] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 08/14] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 09/14] Move bp_type_idx to include/linux/hw_breakpoint.h Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 10/14] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 11/14] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 12/14] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 13/14] Hide CONFIG_PHY_RAM_BASE_ADDRESS from userspace Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` [PATCH 14/14] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:31               ` Palmer Dabbelt
2015-11-10  1:31                 ` Palmer Dabbelt
2015-11-10  1:30             ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
2015-11-10  1:30               ` Palmer Dabbelt
2015-11-03 19:46           ` [PATCH v4] " Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-11-03 19:46           ` Palmer Dabbelt
2015-11-03 19:46             ` Palmer Dabbelt
2015-09-14 22:50         ` [PATCH v3] " Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-10 11:15       ` [PATCH] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h David Howells
2015-09-10 11:15         ` David Howells
2015-09-10 11:15         ` David Howells
2015-09-10 11:18       ` David Howells
2015-09-10 11:18         ` David Howells
2015-09-10 11:18         ` David Howells
2015-09-14 22:50         ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt
2015-09-14 22:50           ` Palmer Dabbelt

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=55fa39d0.2c1b450a.6854.4115@mx.google.com \
    --to=palmer@dabbelt.com \
    --cc=arnd@arndb.de \
    --cc=peterz@infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.