Displaying 3 results from an estimated 3 matches for "xenbus_watch_queu".
Did you mean:
xenbus_watch_queue
2008 Jan 17
0
[PATCH] [Mini-OS] add xenbus token support and separate watch event queues
...+ struct xenbus_event *next;
+};
+
+char *xenbus_watch_path_token(xenbus_transaction_t xbt, const char *path, const char *token, struct xenbus_event *volatile *events);
+char *xenbus_unwatch_path_token(xenbus_transaction_t xbt, const char *path, const char *token);
+extern struct wait_queue_head xenbus_watch_queue;
+void xenbus_wait_for_watch(void);
+char **xenbus_wait_for_watch_return(void);
+char* xenbus_wait_for_value(const char *path, const char *value);
+
+/* When no token is provided, use a global queue. */
+#define XENBUS_WATCH_PATH_TOKEN "xenbus_watch_path"
+extern struct xenbus_event * vo...
2012 Feb 04
2
xen-unstable stubdom build error version(3432abcf9380)
...onsole_queue);
extras/mini-os/lib/sys.c:817: remove_waiter(netfront_w, netfront_queue);
extras/mini-os/lib/sys.c:818: remove_waiter(event_w, event_queue);
extras/mini-os/lib/sys.c:819: remove_waiter(blkfront_w, blkfront_queue);
extras/mini-os/lib/sys.c:820: remove_waiter(xenbus_watch_w, xenbus_watch_queue);
extras/mini-os/lib/sys.c:821: remove_waiter(kbdfront_w, kbdfront_queue);
extras/mini-os/lib/sys.c:822: remove_waiter(console_w, console_queue);
extras/mini-os/blkfront.c:326: remove_waiter(w, blkfront_queue);
extras/mini-os/blkfront.c:417: remove_waiter(w, blkfront_queue);
extras/mini-...
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3:
- mini-os configuration files moved into stubdom/
- mini-os extra console support now a config option
- Fewer #ifdefs
- grant table setup uses hypercall bounce
- Xenstore stub domain syslog support re-enabled
Changes from v2:
- configuration support added to mini-os build system
- add mini-os support for conditionally compiling frontends, xenbus
-