diff options
author | Juergen Gross <jgross@suse.com> | 2017-02-09 08:39:57 -0500 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-02-09 11:26:49 -0500 |
commit | 5584ea250ae44f929feb4c7bd3877d1c5edbf813 (patch) | |
tree | d84dca574c46ec785098d13211d92ef74e3a74f2 /drivers/xen/manage.c | |
parent | 332f791dc98d98116f4473b726f67c9321b0f31e (diff) |
xen: modify xenstore watch event interface
Today a Xenstore watch event is delivered via a callback function
declared as:
void (*callback)(struct xenbus_watch *,
const char **vec, unsigned int len);
As all watch events only ever come with two parameters (path and token)
changing the prototype to:
void (*callback)(struct xenbus_watch *,
const char *path, const char *token);
is the natural thing to do.
Apply this change and adapt all users.
Cc: konrad.wilk@oracle.com
Cc: roger.pau@citrix.com
Cc: wei.liu2@citrix.com
Cc: paul.durrant@citrix.com
Cc: netdev@vger.kernel.org
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Paul Durrant <paul.durrant@citrix.com>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'drivers/xen/manage.c')
-rw-r--r-- | drivers/xen/manage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c index 357a8db859c9..c1ec8ee80924 100644 --- a/drivers/xen/manage.c +++ b/drivers/xen/manage.c | |||
@@ -218,7 +218,7 @@ static struct shutdown_handler shutdown_handlers[] = { | |||
218 | }; | 218 | }; |
219 | 219 | ||
220 | static void shutdown_handler(struct xenbus_watch *watch, | 220 | static void shutdown_handler(struct xenbus_watch *watch, |
221 | const char **vec, unsigned int len) | 221 | const char *path, const char *token) |
222 | { | 222 | { |
223 | char *str; | 223 | char *str; |
224 | struct xenbus_transaction xbt; | 224 | struct xenbus_transaction xbt; |
@@ -266,8 +266,8 @@ static void shutdown_handler(struct xenbus_watch *watch, | |||
266 | } | 266 | } |
267 | 267 | ||
268 | #ifdef CONFIG_MAGIC_SYSRQ | 268 | #ifdef CONFIG_MAGIC_SYSRQ |
269 | static void sysrq_handler(struct xenbus_watch *watch, const char **vec, | 269 | static void sysrq_handler(struct xenbus_watch *watch, const char *path, |
270 | unsigned int len) | 270 | const char *token) |
271 | { | 271 | { |
272 | char sysrq_key = '\0'; | 272 | char sysrq_key = '\0'; |
273 | struct xenbus_transaction xbt; | 273 | struct xenbus_transaction xbt; |