* alpha: Replace __get_cpu_var
@ 2014-05-01 20:39 Christoph Lameter
2014-05-02 8:18 ` Michael Cree
0 siblings, 1 reply; 7+ messages in thread
From: Christoph Lameter @ 2014-05-01 20:39 UTC (permalink / raw)
To: Richard Henderson; +Cc: linux-alpha, Ivan Kokshaysky, Matt Turner
Sorry I have not compiled this code. Could you see if this works?
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
__this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
__this_cpu_inc(y)
CC: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Acked-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Christoph Lameter <cl@linux.com>
Index: linux/arch/alpha/kernel/perf_event.c
===================================================================
--- linux.orig/arch/alpha/kernel/perf_event.c 2014-02-25 13:26:10.830735566 -0600
+++ linux/arch/alpha/kernel/perf_event.c 2014-02-25 13:26:10.830735566 -0600
@@ -431,7 +431,7 @@
*/
static int alpha_pmu_add(struct perf_event *event, int flags)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
struct hw_perf_event *hwc = &event->hw;
int n0;
int ret;
@@ -483,7 +483,7 @@
*/
static void alpha_pmu_del(struct perf_event *event, int flags)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
struct hw_perf_event *hwc = &event->hw;
unsigned long irq_flags;
int j;
@@ -531,7 +531,7 @@
static void alpha_pmu_stop(struct perf_event *event, int flags)
{
struct hw_perf_event *hwc = &event->hw;
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (!(hwc->state & PERF_HES_STOPPED)) {
cpuc->idx_mask &= ~(1UL<<hwc->idx);
@@ -551,7 +551,7 @@
static void alpha_pmu_start(struct perf_event *event, int flags)
{
struct hw_perf_event *hwc = &event->hw;
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
return;
@@ -724,7 +724,7 @@
*/
static void alpha_pmu_enable(struct pmu *pmu)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (cpuc->enabled)
return;
@@ -750,7 +750,7 @@
static void alpha_pmu_disable(struct pmu *pmu)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (!cpuc->enabled)
return;
@@ -815,7 +815,7 @@
int idx, j;
__this_cpu_inc(irq_pmi_count);
- cpuc = &__get_cpu_var(cpu_hw_events);
+ cpuc = this_cpu_ptr(&cpu_hw_events);
/* Completely counting through the PMC's period to trigger a new PMC
* overflow interrupt while in this interrupt routine is utterly
Index: linux/arch/alpha/kernel/time.c
===================================================================
--- linux.orig/arch/alpha/kernel/time.c 2014-02-25 13:26:10.830735566 -0600
+++ linux/arch/alpha/kernel/time.c 2014-02-25 13:26:10.830735566 -0600
@@ -56,9 +56,9 @@
DEFINE_PER_CPU(u8, irq_work_pending);
-#define set_irq_work_pending_flag() __get_cpu_var(irq_work_pending) = 1
-#define test_irq_work_pending() __get_cpu_var(irq_work_pending)
-#define clear_irq_work_pending() __get_cpu_var(irq_work_pending) = 0
+#define set_irq_work_pending_flag() __this_cpu_write(irq_work_pending, 1)
+#define test_irq_work_pending() __this_cpu_read(irq_work_pending)
+#define clear_irq_work_pending() __this_cpu_writeirq_work_pending, 0)
void arch_irq_work_raise(void)
{
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: alpha: Replace __get_cpu_var
2014-05-01 20:39 alpha: Replace __get_cpu_var Christoph Lameter
@ 2014-05-02 8:18 ` Michael Cree
2014-05-02 15:08 ` Christoph Lameter
0 siblings, 1 reply; 7+ messages in thread
From: Michael Cree @ 2014-05-02 8:18 UTC (permalink / raw)
To: Christoph Lameter
Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
On Thu, May 01, 2014 at 03:39:28PM -0500, Christoph Lameter wrote:
> Sorry I have not compiled this code. Could you see if this works?
The patch does not apply cleanly against an up to date pull from Linus'
tree; the last hunk against /arch/alpha/kernel/perf_event.c fails.
Fixing that manually then the compilation fails in
arch/alpha/kernel/time.c with multiple errors due to the changes.
Are there other patches that should be applied first?
Cheers
Michael.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: alpha: Replace __get_cpu_var
2014-05-02 8:18 ` Michael Cree
@ 2014-05-02 15:08 ` Christoph Lameter
2014-05-02 15:11 ` Christoph Lameter
0 siblings, 1 reply; 7+ messages in thread
From: Christoph Lameter @ 2014-05-02 15:08 UTC (permalink / raw)
To: Michael Cree; +Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
On Fri, 2 May 2014, Michael Cree wrote:
> On Thu, May 01, 2014 at 03:39:28PM -0500, Christoph Lameter wrote:
> > Sorry I have not compiled this code. Could you see if this works?
>
> The patch does not apply cleanly against an up to date pull from Linus'
> tree; the last hunk against /arch/alpha/kernel/perf_event.c fails.
> Fixing that manually then the compilation fails in
> arch/alpha/kernel/time.c with multiple errors due to the changes.
>
> Are there other patches that should be applied first?
Hmmm... it applied yesterday against linux-next. Will rediff against Linus
tree and will have a look at time.c
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: alpha: Replace __get_cpu_var
2014-05-02 15:08 ` Christoph Lameter
@ 2014-05-02 15:11 ` Christoph Lameter
2014-05-04 8:55 ` Michael Cree
0 siblings, 1 reply; 7+ messages in thread
From: Christoph Lameter @ 2014-05-02 15:11 UTC (permalink / raw)
To: Michael Cree; +Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
v2 rediffed aginst Linus tree and fixed the macro def in time.c
Subject: alpha: Replace __get_cpu_var
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
__this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
__this_cpu_inc(y)
CC: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Acked-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Christoph Lameter <cl@linux.com>
Index: linux/arch/alpha/kernel/perf_event.c
===================================================================
--- linux.orig/arch/alpha/kernel/perf_event.c 2014-05-02 10:08:46.435517017 -0500
+++ linux/arch/alpha/kernel/perf_event.c 2014-05-02 10:09:27.426730968 -0500
@@ -431,7 +431,7 @@
*/
static int alpha_pmu_add(struct perf_event *event, int flags)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
struct hw_perf_event *hwc = &event->hw;
int n0;
int ret;
@@ -483,7 +483,7 @@
*/
static void alpha_pmu_del(struct perf_event *event, int flags)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
struct hw_perf_event *hwc = &event->hw;
unsigned long irq_flags;
int j;
@@ -531,7 +531,7 @@
static void alpha_pmu_stop(struct perf_event *event, int flags)
{
struct hw_perf_event *hwc = &event->hw;
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (!(hwc->state & PERF_HES_STOPPED)) {
cpuc->idx_mask &= ~(1UL<<hwc->idx);
@@ -551,7 +551,7 @@
static void alpha_pmu_start(struct perf_event *event, int flags)
{
struct hw_perf_event *hwc = &event->hw;
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
return;
@@ -724,7 +724,7 @@
*/
static void alpha_pmu_enable(struct pmu *pmu)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (cpuc->enabled)
return;
@@ -750,7 +750,7 @@
static void alpha_pmu_disable(struct pmu *pmu)
{
- struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
+ struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
if (!cpuc->enabled)
return;
@@ -815,7 +815,7 @@
int idx, j;
__get_cpu_var(irq_pmi_count)++;
- cpuc = &__get_cpu_var(cpu_hw_events);
+ cpuc = this_cpu_ptr(&cpu_hw_events);
/* Completely counting through the PMC's period to trigger a new PMC
* overflow interrupt while in this interrupt routine is utterly
Index: linux/arch/alpha/kernel/time.c
===================================================================
--- linux.orig/arch/alpha/kernel/time.c 2014-05-02 10:08:46.435517017 -0500
+++ linux/arch/alpha/kernel/time.c 2014-05-02 10:10:08.053951701 -0500
@@ -56,9 +56,9 @@
DEFINE_PER_CPU(u8, irq_work_pending);
-#define set_irq_work_pending_flag() __get_cpu_var(irq_work_pending) = 1
-#define test_irq_work_pending() __get_cpu_var(irq_work_pending)
-#define clear_irq_work_pending() __get_cpu_var(irq_work_pending) = 0
+#define set_irq_work_pending_flag() __this_cpu_write(irq_work_pending, 1)
+#define test_irq_work_pending() __this_cpu_read(irq_work_pending)
+#define clear_irq_work_pending() __this_cpu_write(irq_work_pending, 0)
void arch_irq_work_raise(void)
{
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: alpha: Replace __get_cpu_var
2014-05-02 15:11 ` Christoph Lameter
@ 2014-05-04 8:55 ` Michael Cree
2014-05-05 15:51 ` Christoph Lameter
0 siblings, 1 reply; 7+ messages in thread
From: Michael Cree @ 2014-05-04 8:55 UTC (permalink / raw)
To: Christoph Lameter
Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
On Fri, May 02, 2014 at 10:11:10AM -0500, Christoph Lameter wrote:
> v2 rediffed aginst Linus tree and fixed the macro def in time.c
>
> Subject: alpha: Replace __get_cpu_var
Yes, that compiles and performance events is still working okay with
the built kernel.
Tested-by: Michael Cree <mcree@orcon.net.nz>
Cheers
Michael
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: alpha: Replace __get_cpu_var
2014-05-04 8:55 ` Michael Cree
@ 2014-05-05 15:51 ` Christoph Lameter
2014-05-25 20:01 ` Michael Cree
0 siblings, 1 reply; 7+ messages in thread
From: Christoph Lameter @ 2014-05-05 15:51 UTC (permalink / raw)
To: Michael Cree; +Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
On Sun, 4 May 2014, Michael Cree wrote:
> On Fri, May 02, 2014 at 10:11:10AM -0500, Christoph Lameter wrote:
> > v2 rediffed aginst Linus tree and fixed the macro def in time.c
> >
> > Subject: alpha: Replace __get_cpu_var
>
> Yes, that compiles and performance events is still working okay with
> the built kernel.
>
> Tested-by: Michael Cree <mcree@orcon.net.nz>
Could you merge the patch through your tree?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: alpha: Replace __get_cpu_var
2014-05-05 15:51 ` Christoph Lameter
@ 2014-05-25 20:01 ` Michael Cree
0 siblings, 0 replies; 7+ messages in thread
From: Michael Cree @ 2014-05-25 20:01 UTC (permalink / raw)
To: Christoph Lameter
Cc: Richard Henderson, linux-alpha, Ivan Kokshaysky, Matt Turner
On Mon, May 05, 2014 at 10:51:32AM -0500, Christoph Lameter wrote:
> On Sun, 4 May 2014, Michael Cree wrote:
>
> > On Fri, May 02, 2014 at 10:11:10AM -0500, Christoph Lameter wrote:
> > > v2 rediffed aginst Linus tree and fixed the macro def in time.c
> > >
> > > Subject: alpha: Replace __get_cpu_var
> >
> > Yes, that compiles and performance events is still working okay with
> > the built kernel.
> >
> > Tested-by: Michael Cree <mcree@orcon.net.nz>
>
> Could you merge the patch through your tree?
Matt, will you look after this? And also the patches I sent to add
the missing syscalls?
Cheers
Michael.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-05-25 20:01 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-01 20:39 alpha: Replace __get_cpu_var Christoph Lameter
2014-05-02 8:18 ` Michael Cree
2014-05-02 15:08 ` Christoph Lameter
2014-05-02 15:11 ` Christoph Lameter
2014-05-04 8:55 ` Michael Cree
2014-05-05 15:51 ` Christoph Lameter
2014-05-25 20:01 ` Michael Cree
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).