Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1286495 > unrolled thread

Re: [PATCH] fs/super.c: use && instead of & for warn_on condition

Started byJiri Kosina <jikos@kernel.org>
First post2015-12-08 15:00 +0100
Last post2015-12-08 15:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] fs/super.c: use && instead of & for warn_on condition Jiri Kosina <jikos@kernel.org> - 2015-12-08 15:00 +0100

#1286495 — Re: [PATCH] fs/super.c: use && instead of & for warn_on condition

FromJiri Kosina <jikos@kernel.org>
Date2015-12-08 15:00 +0100
SubjectRe: [PATCH] fs/super.c: use && instead of & for warn_on condition
Message-ID<qDqY9-348-1@gated-at.bofh.it>
On Mon, 21 Sep 2015, Oleg Nesterov wrote:

> > --- a/fs/super.c
> > +++ b/fs/super.c
> > @@ -1199,7 +1199,7 @@ int __sb_start_write(struct super_block *sb, int level, bool wait)
> >  	else
> >  		ret = percpu_down_read_trylock(sb->s_writers.rw_sem + level-1);
> >
> > -	WARN_ON(force_trylock & !ret);
> > +	WARN_ON(force_trylock && !ret);
> 
> OOPS! yes, this is a typo, thanks! Harmless in this particular case,
> but still.
> 
> Acked-by: Oleg Nesterov <oleg@redhat.com>

Doesn't seem to be in linux-next as of today, so I am taking it now. 
Thanks,

-- 
Jiri Kosina
SUSE Labs

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web