summaryrefslogtreecommitdiffstats
path: root/runtime/transport/control.c
diff options
context:
space:
mode:
authorhunt <hunt>2008-01-28 19:20:48 +0000
committerhunt <hunt>2008-01-28 19:20:48 +0000
commita2fac8e8d1899b7e12b98fbc83639d321f3f182e (patch)
tree14db7eb13b3f55023f7f15042876a174c6be4dff /runtime/transport/control.c
parentb0986e7ae55d82ffd6ddc399a16237fbb1efe6f9 (diff)
downloadsystemtap-steved-a2fac8e8d1899b7e12b98fbc83639d321f3f182e.tar.gz
systemtap-steved-a2fac8e8d1899b7e12b98fbc83639d321f3f182e.tar.xz
systemtap-steved-a2fac8e8d1899b7e12b98fbc83639d321f3f182e.zip
2008-01-28 Martin Hunt <hunt@redhat.com>
* control.c, procfs.c, symbols.c: Use DEFINE_SPINLOCK
Diffstat (limited to 'runtime/transport/control.c')
-rw-r--r--runtime/transport/control.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/transport/control.c b/runtime/transport/control.c
index 3179f507..0bf99fc8 100644
--- a/runtime/transport/control.c
+++ b/runtime/transport/control.c
@@ -1,7 +1,7 @@
/* -*- linux-c -*-
*
* debugfs control channel
- * Copyright (C) 2007 Red Hat Inc.
+ * Copyright (C) 2007-2008 Red Hat Inc.
*
* This file is part of systemtap, and is free software. You can
* redistribute it and/or modify it under the terms of the GNU General
@@ -15,9 +15,9 @@ static int _stp_current_buffers = STP_DEFAULT_BUFFERS;
static struct list_head _stp_ctl_ready_q;
static struct list_head _stp_sym_ready_q;
static struct list_head _stp_pool_q;
-spinlock_t _stp_pool_lock = SPIN_LOCK_UNLOCKED;
-spinlock_t _stp_ctl_ready_lock = SPIN_LOCK_UNLOCKED;
-spinlock_t _stp_sym_ready_lock = SPIN_LOCK_UNLOCKED;
+DEFINE_SPINLOCK(_stp_pool_lock);
+DEFINE_SPINLOCK(_stp_ctl_ready_lock);
+DEFINE_SPINLOCK(_stp_sym_ready_lock);
static ssize_t _stp_sym_write_cmd (struct file *file, const char __user *buf,
size_t count, loff_t *ppos)