Skip to content

Commit aa1a1b5

Browse files
author
Fox Snowpatch
committed
1 parent ddf9a4c commit aa1a1b5

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

arch/powerpc/include/asm/dtl.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef _ASM_POWERPC_DTL_H
22
#define _ASM_POWERPC_DTL_H
33

4+
#include <linux/rwsem.h>
45
#include <asm/lppaca.h>
56
#include <linux/spinlock_types.h>
67

@@ -35,7 +36,7 @@ struct dtl_entry {
3536
#define DTL_LOG_ALL (DTL_LOG_CEDE | DTL_LOG_PREEMPT | DTL_LOG_FAULT)
3637

3738
extern struct kmem_cache *dtl_cache;
38-
extern rwlock_t dtl_access_lock;
39+
extern struct rw_semaphore dtl_access_lock;
3940

4041
extern void register_dtl_buffer(int cpu);
4142
extern void alloc_dtl_buffers(unsigned long *time_limit);

arch/powerpc/platforms/pseries/dtl.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,15 @@ static int dtl_enable(struct dtl *dtl)
191191
return -EBUSY;
192192

193193
/* ensure there are no other conflicting dtl users */
194-
if (!read_trylock(&dtl_access_lock))
194+
if (!down_read_trylock(&dtl_access_lock))
195195
return -EBUSY;
196196

197197
n_entries = dtl_buf_entries;
198198
buf = kmem_cache_alloc_node(dtl_cache, GFP_KERNEL, cpu_to_node(dtl->cpu));
199199
if (!buf) {
200200
printk(KERN_WARNING "%s: buffer alloc failed for cpu %d\n",
201201
__func__, dtl->cpu);
202-
read_unlock(&dtl_access_lock);
202+
up_read(&dtl_access_lock);
203203
return -ENOMEM;
204204
}
205205

@@ -217,7 +217,7 @@ static int dtl_enable(struct dtl *dtl)
217217
spin_unlock(&dtl->lock);
218218

219219
if (rc) {
220-
read_unlock(&dtl_access_lock);
220+
up_read(&dtl_access_lock);
221221
kmem_cache_free(dtl_cache, buf);
222222
}
223223

@@ -232,7 +232,7 @@ static void dtl_disable(struct dtl *dtl)
232232
dtl->buf = NULL;
233233
dtl->buf_entries = 0;
234234
spin_unlock(&dtl->lock);
235-
read_unlock(&dtl_access_lock);
235+
up_read(&dtl_access_lock);
236236
}
237237

238238
/* file interface */

arch/powerpc/platforms/pseries/lpar.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ struct vcpu_dispatch_data {
169169
*/
170170
#define NR_CPUS_H NR_CPUS
171171

172-
DEFINE_RWLOCK(dtl_access_lock);
172+
DECLARE_RWSEM(dtl_access_lock);
173173
static DEFINE_PER_CPU(struct vcpu_dispatch_data, vcpu_disp_data);
174174
static DEFINE_PER_CPU(u64, dtl_entry_ridx);
175175
static DEFINE_PER_CPU(struct dtl_worker, dtl_workers);
@@ -463,7 +463,7 @@ static int dtl_worker_enable(unsigned long *time_limit)
463463
{
464464
int rc = 0, state;
465465

466-
if (!write_trylock(&dtl_access_lock)) {
466+
if (!down_write_trylock(&dtl_access_lock)) {
467467
rc = -EBUSY;
468468
goto out;
469469
}
@@ -479,7 +479,7 @@ static int dtl_worker_enable(unsigned long *time_limit)
479479
pr_err("vcpudispatch_stats: unable to setup workqueue for DTL processing\n");
480480
free_dtl_buffers(time_limit);
481481
reset_global_dtl_mask();
482-
write_unlock(&dtl_access_lock);
482+
up_write(&dtl_access_lock);
483483
rc = -EINVAL;
484484
goto out;
485485
}
@@ -494,7 +494,7 @@ static void dtl_worker_disable(unsigned long *time_limit)
494494
cpuhp_remove_state(dtl_worker_state);
495495
free_dtl_buffers(time_limit);
496496
reset_global_dtl_mask();
497-
write_unlock(&dtl_access_lock);
497+
up_write(&dtl_access_lock);
498498
}
499499

500500
static ssize_t vcpudispatch_stats_write(struct file *file, const char __user *p,

0 commit comments

Comments
 (0)