aboutsummaryrefslogtreecommitdiffstats
path: root/net/caif
diff options
context:
space:
mode:
authorChristoph Lameter <cl@linux.com>2011-12-22 12:58:51 -0500
committerTejun Heo <tj@kernel.org>2011-12-22 13:40:20 -0500
commit933393f58fef9963eac61db8093689544e29a600 (patch)
tree719f8b231499aa4ea023bc1a06db4582df5f0965 /net/caif
parentecefc36b41ac0fe92d76273a23faf27b2da13411 (diff)
percpu: Remove irqsafe_cpu_xxx variants
We simply say that regular this_cpu use must be safe regardless of preemption and interrupt state. That has no material change for x86 and s390 implementations of this_cpu operations. However, arches that do not provide their own implementation for this_cpu operations will now get code generated that disables interrupts instead of preemption. -tj: This is part of on-going percpu API cleanup. For detailed discussion of the subject, please refer to the following thread. http://thread.gmane.org/gmane.linux.kernel/1222078 Signed-off-by: Christoph Lameter <cl@linux.com> Signed-off-by: Tejun Heo <tj@kernel.org> LKML-Reference: <alpine.DEB.2.00.1112221154380.11787@router.home>
Diffstat (limited to 'net/caif')
-rw-r--r--net/caif/caif_dev.c4
-rw-r--r--net/caif/cffrml.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/net/caif/caif_dev.c b/net/caif/caif_dev.c
index f1fa1f6e658d..64930cc2746a 100644
--- a/net/caif/caif_dev.c
+++ b/net/caif/caif_dev.c
@@ -69,12 +69,12 @@ static struct caif_device_entry_list *caif_device_list(struct net *net)
69 69
70static void caifd_put(struct caif_device_entry *e) 70static void caifd_put(struct caif_device_entry *e)
71{ 71{
72 irqsafe_cpu_dec(*e->pcpu_refcnt); 72 this_cpu_dec(*e->pcpu_refcnt);
73} 73}
74 74
75static void caifd_hold(struct caif_device_entry *e) 75static void caifd_hold(struct caif_device_entry *e)
76{ 76{
77 irqsafe_cpu_inc(*e->pcpu_refcnt); 77 this_cpu_inc(*e->pcpu_refcnt);
78} 78}
79 79
80static int caifd_refcnt_read(struct caif_device_entry *e) 80static int caifd_refcnt_read(struct caif_device_entry *e)
diff --git a/net/caif/cffrml.c b/net/caif/cffrml.c
index d3ca87bf23b7..0a7df7ef062d 100644
--- a/net/caif/cffrml.c
+++ b/net/caif/cffrml.c
@@ -177,14 +177,14 @@ void cffrml_put(struct cflayer *layr)
177{ 177{
178 struct cffrml *this = container_obj(layr); 178 struct cffrml *this = container_obj(layr);
179 if (layr != NULL && this->pcpu_refcnt != NULL) 179 if (layr != NULL && this->pcpu_refcnt != NULL)
180 irqsafe_cpu_dec(*this->pcpu_refcnt); 180 this_cpu_dec(*this->pcpu_refcnt);
181} 181}
182 182
183void cffrml_hold(struct cflayer *layr) 183void cffrml_hold(struct cflayer *layr)
184{ 184{
185 struct cffrml *this = container_obj(layr); 185 struct cffrml *this = container_obj(layr);
186 if (layr != NULL && this->pcpu_refcnt != NULL) 186 if (layr != NULL && this->pcpu_refcnt != NULL)
187 irqsafe_cpu_inc(*this->pcpu_refcnt); 187 this_cpu_inc(*this->pcpu_refcnt);
188} 188}
189 189
190int cffrml_refcnt_read(struct cflayer *layr) 190int cffrml_refcnt_read(struct cflayer *layr)