public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Aaron Tomlin <atomlin@redhat.com>
To: Jan Moskyto Matejka <mq@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] [linux-next] watchdog: convert deprecated call to current interface
Date: Fri, 2 May 2014 14:10:22 +0100	[thread overview]
Message-ID: <20140502131022.GA20581@atomlin.usersys.redhat.com> (raw)
In-Reply-To: <1399035374-13548-1-git-send-email-mq@suse.cz>

On Fri, May 02, 2014 at 02:56:14PM +0200, Jan Moskyto Matejka wrote:
> This commit fixes this warning:
> 
> kernel/watchdog.c: In function ‘watchdog_timer_fn’:
> kernel/watchdog.c:368:4: warning: ‘smp_mb__after_clear_bit’ is deprecated (declared at include/linux/bitops.h:48) [-Wdeprecated-declarations]
>     smp_mb__after_clear_bit();
> 
> That code was introduced in commit 90e6b763ca8a5eb739e59489f42d45e13431d157
> ("kernel/watchdog.c: print traces for all cpus on lockup detection") and then
> merged with another branch containing commit
> febdbfe8a91ce0d11939d4940b592eb0dba8d663 ("arch: Prepare for
> smp_mb__{before,after}_atomic()") which deprecates the
> smp_mb__after_clear_bit() call in favour of smp_mb__after_atomic().
> 
> Signed-off-by: Jan Moskyto Matejka <mq@suse.cz>
> ---
>  kernel/watchdog.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/watchdog.c b/kernel/watchdog.c
> index 4dbc7f8..d977f51 100644
> --- a/kernel/watchdog.c
> +++ b/kernel/watchdog.c
> @@ -365,7 +365,7 @@ static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
>  
>  			clear_bit(0, &soft_lockup_nmi_warn);
>  			/* Barrier to sync with other cpus */
> -			smp_mb__after_clear_bit();
> +			smp_mb__after_atomic();
>  		}
>  
>  		if (softlockup_panic) {
> -- 
> 1.8.4.5

Acked-by: Aaron Tomlin <atomlin@redhat.com>

-- 
Aaron Tomlin

      reply	other threads:[~2014-05-02 13:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-02 12:56 [PATCH] [linux-next] watchdog: convert deprecated call to current interface Jan Moskyto Matejka
2014-05-02 13:10 ` Aaron Tomlin [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=20140502131022.GA20581@atomlin.usersys.redhat.com \
    --to=atomlin@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mq@suse.cz \
    /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