From: Juergen Gross <jgross@suse.com>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>,
linux-kernel@vger.kernel.org, xen-devel@lists.xenproject.org
Cc: konrad.wilk@oracle.com
Subject: Re: [PATCH v2] xen: make functions in xen-acpi-processor return void
Date: Fri, 31 Mar 2017 17:29:27 +0200 [thread overview]
Message-ID: <8740ea5c-826d-337b-4e9b-914a8a3e133d@suse.com> (raw)
In-Reply-To: <a4a8a759-a89b-8411-80b8-15242e767721@oracle.com>
On 31/03/17 17:13, Boris Ostrovsky wrote:
> On 03/31/2017 10:40 AM, Juergen Gross wrote:
>> There are several functions in xen-acpi-processor which either always
>> return the same value or where the returned value is never checked.
>>
>> Make the functions return void.
>>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
>> ---
>> drivers/xen/xen-acpi-processor.c | 51 +++++++++++++++-------------------------
>> 1 file changed, 19 insertions(+), 32 deletions(-)
>>
>> diff --git a/drivers/xen/xen-acpi-processor.c b/drivers/xen/xen-acpi-processor.c
>> index 23e391d..45be017 100644
>> --- a/drivers/xen/xen-acpi-processor.c
>> +++ b/drivers/xen/xen-acpi-processor.c
>> @@ -54,7 +54,7 @@ static unsigned long *acpi_id_present;
>> /* And if there is an _CST definition (or a PBLK) for the ACPI IDs */
>> static unsigned long *acpi_id_cst_present;
>>
>> -static int push_cxx_to_hypervisor(struct acpi_processor *_pr)
>> +static void push_cxx_to_hypervisor(struct acpi_processor *_pr)
>> {
>> struct xen_platform_op op = {
>> .cmd = XENPF_set_processor_pminfo,
>> @@ -70,7 +70,7 @@ static int push_cxx_to_hypervisor(struct acpi_processor *_pr)
>> dst_cx_states = kcalloc(_pr->power.count,
>> sizeof(struct xen_processor_cx), GFP_KERNEL);
>> if (!dst_cx_states)
>> - return -ENOMEM;
>> + return;
>
> Maybe pr_warn(_once)()?
I don't think so. Memory shortage is probably detectable without that
message. Adding another (random) message will do more harm than good.
Juergen
>
> In any case:
>
> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
>
next prev parent reply other threads:[~2017-03-31 15:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-31 14:40 [PATCH v2] xen: make functions in xen-acpi-processor return void Juergen Gross
2017-03-31 15:13 ` Boris Ostrovsky
2017-03-31 15:29 ` Juergen Gross [this message]
2017-03-31 15:15 ` Konrad Rzeszutek Wilk
2017-03-31 15:30 ` Juergen Gross
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=8740ea5c-826d-337b-4e9b-914a8a3e133d@suse.com \
--to=jgross@suse.com \
--cc=boris.ostrovsky@oracle.com \
--cc=konrad.wilk@oracle.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