[3.16.y-ckt stable] Patch "ARC: make sure instruction_pointer() returns unsigned value" has been added to staging queue

2015-08-11 Thread Luis Henriques
This is a note to let you know that I have just added a patch titled ARC: make sure instruction_pointer() returns unsigned value to the linux-3.16.y-queue branch of the 3.16.y-ckt extended stable tree which can be found at: http://kernel.ubuntu.com/git/ubuntu/linux.git/log/?h=linux-3.16

[3.13.y-ckt stable] Patch "ARC: make sure instruction_pointer() returns unsigned value" has been added to staging queue

2015-08-06 Thread Kamal Mostafa
This is a note to let you know that I have just added a patch titled ARC: make sure instruction_pointer() returns unsigned value to the linux-3.13.y-queue branch of the 3.13.y-ckt extended stable tree which can be found at: http://kernel.ubuntu.com/git/ubuntu/linux.git/log/?h=linux-3.13

[3.19.y-ckt stable] Patch "ARC: make sure instruction_pointer() returns unsigned value" has been added to staging queue

2015-08-05 Thread Kamal Mostafa
This is a note to let you know that I have just added a patch titled ARC: make sure instruction_pointer() returns unsigned value to the linux-3.19.y-queue branch of the 3.19.y-ckt extended stable tree which can be found at: http://kernel.ubuntu.com/git/ubuntu/linux.git/log/?h=linux-3.19

Re: [PATCH] ARC: make sure instruction_pointer() returns unsigned value

2015-07-13 Thread Vineet Gupta
On Monday 13 July 2015 12:55 PM, Alexey Brodkin wrote: > Currently instruction_pointer() returns pt_regs->ret and so return value > is of type "long", which implicitly stands for "signed long". > > While that's perfectly fine when dealing with 32-bit values if return > value of instruction_pointer(

[PATCH] ARC: make sure instruction_pointer() returns unsigned value

2015-07-13 Thread Alexey Brodkin
Currently instruction_pointer() returns pt_regs->ret and so return value is of type "long", which implicitly stands for "signed long". While that's perfectly fine when dealing with 32-bit values if return value of instruction_pointer() gets assigned to 64-bit variable sign extension may happen. A