From: Paul Durrant <Paul.Durrant@citrix.com>
To: Juergen Gross <jgross@suse.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>,
David Vrabel <david.vrabel@citrix.com>
Subject: RE: [PATCH] xenbus: advertize control feature flags
Date: Mon, 10 Oct 2016 09:28:51 +0000 [thread overview]
Message-ID: <662d464cd3394fa8a5e2b1800bfb8ced@AMSPEX02CL03.citrite.net> (raw)
In-Reply-To: <aba83dce-b938-c113-4801-bae175ec026c@suse.com>
> -----Original Message-----
> From: Juergen Gross [mailto:jgross@suse.com]
> Sent: 10 October 2016 10:17
> To: Paul Durrant <Paul.Durrant@citrix.com>; linux-kernel@vger.kernel.org;
> xen-devel@lists.xenproject.org
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>; David Vrabel
> <david.vrabel@citrix.com>
> Subject: Re: [PATCH] xenbus: advertize control feature flags
>
> On 10/10/16 09:43, Paul Durrant wrote:
> > The Xen docs specify several flags which a guest can set to advertize
> > which values of the xenstore control/shutdown key it will recognize.
> > This patch adds code to write all the relevant feature-flag keys.
> >
> > Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
> > Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> > Cc: David Vrabel <david.vrabel@citrix.com>
> > Cc: Juergen Gross <jgross@suse.com>
> > ---
> > drivers/xen/manage.c | 45 +++++++++++++++++++++++++++++++++++--
> --------
> > 1 file changed, 35 insertions(+), 10 deletions(-)
> >
> > diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c
> > index e12bd36..86cf57c 100644
> > --- a/drivers/xen/manage.c
> > +++ b/drivers/xen/manage.c
>
> > @@ -309,8 +311,31 @@ static struct notifier_block xen_reboot_nb = {
> >
> > static int setup_shutdown_watcher(void)
> > {
> > + static struct shutdown_handler *handler;
> > int err;
> >
> > + for (handler = &shutdown_handlers[0]; handler->command;
> handler++) {
> > + const char *fmt = "feature-%s";
> > + int size;
> > + char *node;
> > +
> > + if (!handler->flag)
> > + continue;
> > +
> > + size = snprintf(NULL, 0, fmt, handler->command);
> > +
> > + node = kmalloc(++size, GFP_KERNEL);
> > + if (!node) {
> > + pr_err("Failed to allocate feature flag\n");
> > + return -ENOMEM;
> > + }
> > +
> > + (void) snprintf(node, size, fmt, handler->command);
>
> One other nit: please us kasprintf() instead of open coding it.
>
Yes, that would be better.
Cheers,
Paul
>
> Juergen
prev parent reply other threads:[~2016-10-10 10:13 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-10 7:43 Paul Durrant
2016-10-10 9:11 ` Juergen Gross
2016-10-10 9:28 ` Paul Durrant
2016-10-10 9:17 ` Juergen Gross
2016-10-10 9:28 ` Paul Durrant [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=662d464cd3394fa8a5e2b1800bfb8ced@AMSPEX02CL03.citrite.net \
--to=paul.durrant@citrix.com \
--cc=boris.ostrovsky@oracle.com \
--cc=david.vrabel@citrix.com \
--cc=jgross@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®