Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-25 Thread Steven Rostedt
On Fri, 2013-01-25 at 11:16 +0100, Borislav Petkov wrote: > On Thu, Jan 24, 2013 at 11:15:10PM -0500, Sasha Levin wrote: > > Sorry about this. I didn't have the ability to build all arches over here :( > > Seen this already: https://www.kernel.org/pub/tools/crosstool/ And look in the kernel

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-25 Thread Borislav Petkov
On Thu, Jan 24, 2013 at 11:15:10PM -0500, Sasha Levin wrote: > Sorry about this. I didn't have the ability to build all arches over here :( Seen this already: https://www.kernel.org/pub/tools/crosstool/ ? -- Regards/Gruss, Boris. Sent from a fat crate under my desk. Formatting is fine. --

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-25 Thread Borislav Petkov
On Thu, Jan 24, 2013 at 11:15:10PM -0500, Sasha Levin wrote: Sorry about this. I didn't have the ability to build all arches over here :( Seen this already: https://www.kernel.org/pub/tools/crosstool/ ? -- Regards/Gruss, Boris. Sent from a fat crate under my desk. Formatting is fine. --

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-25 Thread Steven Rostedt
On Fri, 2013-01-25 at 11:16 +0100, Borislav Petkov wrote: On Thu, Jan 24, 2013 at 11:15:10PM -0500, Sasha Levin wrote: Sorry about this. I didn't have the ability to build all arches over here :( Seen this already: https://www.kernel.org/pub/tools/crosstool/ And look in the kernel tree:

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-24 Thread Sasha Levin
On 01/18/2013 04:25 PM, Steven Rostedt wrote: > On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: >> Modify the parameters of all the lookup and the bookkeeping functions which >> should be const to const. >> >> For example, jump_label_text_reserved() doesn't modify the memory it works >> on,

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-24 Thread Sasha Levin
On 01/18/2013 04:25 PM, Steven Rostedt wrote: On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-21 Thread Rusty Russell
Steven Rostedt writes: > On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: >> Modify the parameters of all the lookup and the bookkeeping functions which >> should be const to const. >> >> For example, jump_label_text_reserved() doesn't modify the memory it works >> on, >> it just checks

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-21 Thread Rusty Russell
Steven Rostedt rost...@goodmis.org writes: On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-18 Thread Steven Rostedt
This should have been Cc'd to linux-arch. -- Steve On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: > Modify the parameters of all the lookup and the bookkeeping functions which > should be const to const. > > For example, jump_label_text_reserved() doesn't modify the memory it works on,

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-18 Thread Steven Rostedt
On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: > Modify the parameters of all the lookup and the bookkeeping functions which > should be const to const. > > For example, jump_label_text_reserved() doesn't modify the memory it works on, > it just checks whether there are any jump labels

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-18 Thread Steven Rostedt
On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just checks whether there are any jump labels there.

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-18 Thread Steven Rostedt
This should have been Cc'd to linux-arch. -- Steve On Wed, 2013-01-09 at 18:09 -0500, Sasha Levin wrote: Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-15 Thread Steven Rostedt
On Tue, 2013-01-15 at 15:46 -0500, Sasha Levin wrote: > ping? > I'm still pretty busy. I'll try to take a look at it sometime this week. -- Steve -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-15 Thread Sasha Levin
ping? On Wed, Jan 9, 2013 at 6:09 PM, Sasha Levin wrote: > Modify the parameters of all the lookup and the bookkeeping functions which > should be const to const. > > For example, jump_label_text_reserved() doesn't modify the memory it works on, > it just checks whether there are any jump labels

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-15 Thread Steven Rostedt
On Tue, 2013-01-15 at 15:46 -0500, Sasha Levin wrote: ping? I'm still pretty busy. I'll try to take a look at it sometime this week. -- Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 2/5] jump label: constify lookup functions

2013-01-15 Thread Sasha Levin
ping? On Wed, Jan 9, 2013 at 6:09 PM, Sasha Levin sasha.le...@oracle.com wrote: Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just checks whether there

[PATCH 2/5] jump label: constify lookup functions

2013-01-09 Thread Sasha Levin
Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just checks whether there are any jump labels there. Note I couldn't test the non-x86 architectures, but the

[PATCH 2/5] jump label: constify lookup functions

2013-01-09 Thread Sasha Levin
Modify the parameters of all the lookup and the bookkeeping functions which should be const to const. For example, jump_label_text_reserved() doesn't modify the memory it works on, it just checks whether there are any jump labels there. Note I couldn't test the non-x86 architectures, but the