All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
To: Neil Zhang <zhangwm@marvell.com>, linux-kernel@vger.kernel.org
Cc: gregkh@linuxfoundation.org, "Rafael J. Wysocki" <rjw@rjwysocki.net>
Subject: Re: [PATCH V2] Driver cpu: update online when cpu_up/down besides sysfs
Date: Mon, 27 Oct 2014 22:38:56 +0100	[thread overview]
Message-ID: <544EBB70.6020507@intel.com> (raw)
In-Reply-To: <1414378748-8855-1-git-send-email-zhangwm@marvell.com>

On 10/27/2014 3:59 AM, Neil Zhang wrote:
> The current per-cpu offline info won't be updated when we use
> any other method besides sysfs to call cpu_up/down.
> Thus the cpu/online can't reflect the real online status.
>
> This patch is going to fix the issue introduced by commit
> 0902a9044fa5b7a0456ea4daacec2c2b3189ba8c (Driver core:
> Use generic offline/online for CPU offline/online)
>
> CC: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> Tested-by: Dan Streetman <ddstreet@ieee.org>
> Signed-off-by: Neil Zhang <zhangwm@marvell.com>

Oh dear, no.

Please first tell me what exactly the problem you're seeing is.

> ---
>   drivers/base/cpu.c |   25 +++++++++++++++++++++++++
>   1 file changed, 25 insertions(+)
>
> diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c
> index 006b1bc..9d61824 100644
> --- a/drivers/base/cpu.c
> +++ b/drivers/base/cpu.c
> @@ -418,10 +418,35 @@ static void __init cpu_dev_register_generic(void)
>   #endif
>   }
>   
> +static int device_hotplug_notifier(struct notifier_block *nfb,
> +				      unsigned long action, void *hcpu)
> +{
> +	unsigned int cpu = (unsigned long)hcpu;
> +	struct device *dev = get_cpu_device(cpu);
> +	int ret;
> +
> +	switch (action & ~CPU_TASKS_FROZEN) {
> +	case CPU_ONLINE:
> +		dev->offline = false;
> +		ret = NOTIFY_OK;
> +		break;
> +	case CPU_DYING:
> +		dev->offline = true;
> +		ret = NOTIFY_OK;
> +		break;
> +	default:
> +		ret = NOTIFY_DONE;
> +		break;
> +	}
> +
> +	return ret;
> +}
> +
>   void __init cpu_dev_init(void)
>   {
>   	if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
>   		panic("Failed to register CPU subsystem");
>   
>   	cpu_dev_register_generic();
> +	cpu_notifier(device_hotplug_notifier, 0);
>   }


  reply	other threads:[~2014-10-27 21:39 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-27  2:59 [PATCH V2] Driver cpu: update online when cpu_up/down besides sysfs Neil Zhang
2014-10-27 21:38 ` Rafael J. Wysocki [this message]
2014-10-28  0:46   ` Dan Streetman
2014-10-29 21:46     ` Rafael J. Wysocki
2014-10-29 21:52       ` Dan Streetman
2014-10-30  2:03         ` Neil Zhang
2014-10-31 19:41         ` [PATCH] powerpc: use device_online/offline() instead of cpu_up/down() Dan Streetman
2014-10-31 19:41           ` Dan Streetman
2014-11-02  4:58           ` Bharata B Rao
2014-11-02  4:58             ` Bharata B Rao
2014-11-03 15:45           ` Nathan Fontenot
2014-10-30  2:00       ` [PATCH V2] Driver cpu: update online when cpu_up/down besides sysfs Neil Zhang

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=544EBB70.6020507@intel.com \
    --to=rafael.j.wysocki@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rjw@rjwysocki.net \
    --cc=zhangwm@marvell.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.