debuggers.hg
changeset 12834:28e883b3933d
[LINUX] Make xb_waitq static.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Jan Beulich <jbeulich@novell.com>
author | kfraser@localhost.localdomain |
---|---|
date | Fri Dec 08 09:27:39 2006 +0000 (2006-12-08) |
parents | 1bcb97a1b2da |
children | 45765c7a5066 |
files | linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.c linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.h |
line diff
1.1 --- a/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.c Fri Dec 08 09:19:37 2006 +0000 1.2 +++ b/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.c Fri Dec 08 09:27:39 2006 +0000 1.3 @@ -52,7 +52,7 @@ extern void xenbus_probe(void *); 1.4 extern int xenstored_ready; 1.5 static DECLARE_WORK(probe_work, xenbus_probe, NULL); 1.6 1.7 -DECLARE_WAIT_QUEUE_HEAD(xb_waitq); 1.8 +static DECLARE_WAIT_QUEUE_HEAD(xb_waitq); 1.9 1.10 static irqreturn_t wake_waiting(int irq, void *unused, struct pt_regs *regs) 1.11 {
2.1 --- a/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.h Fri Dec 08 09:19:37 2006 +0000 2.2 +++ b/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.h Fri Dec 08 09:27:39 2006 +0000 2.3 @@ -38,7 +38,6 @@ int xb_init_comms(void); 2.4 int xb_write(const void *data, unsigned len); 2.5 int xb_read(void *data, unsigned len); 2.6 int xs_input_avail(void); 2.7 -extern wait_queue_head_t xb_waitq; 2.8 extern struct xenstore_domain_interface *xen_store_interface; 2.9 extern int xen_store_evtchn; 2.10