mm-commits.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* + scatterlist-reorder-compound-boolean-expression.patch added to -mm tree
@ 2017-02-07  0:28 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-02-07  0:28 UTC (permalink / raw)
  To: gilad, axboe, ofir.drang, mm-commits


The patch titled
     Subject: scatterlist: reorder compound boolean expression
has been added to the -mm tree.  Its filename is
     scatterlist-reorder-compound-boolean-expression.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/scatterlist-reorder-compound-boolean-expression.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/scatterlist-reorder-compound-boolean-expression.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Gilad Ben-Yossef <gilad@benyossef.com>
Subject: scatterlist: reorder compound boolean expression

Test the cheaper boolean expression with no side effects first.

Link: http://lkml.kernel.org/r/1486040150-14109-2-git-send-email-gilad@benyossef.com
Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: <ofir.drang@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 lib/scatterlist.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN lib/scatterlist.c~scatterlist-reorder-compound-boolean-expression lib/scatterlist.c
--- a/lib/scatterlist.c~scatterlist-reorder-compound-boolean-expression
+++ a/lib/scatterlist.c
@@ -680,7 +680,7 @@ size_t sg_copy_buffer(struct scatterlist
 
 	local_irq_save(flags);
 
-	while (sg_miter_next(&miter) && offset < buflen) {
+	while ((offset < buflen) && sg_miter_next(&miter)) {
 		unsigned int len;
 
 		len = min(miter.length, buflen - offset);
_

Patches currently in -mm which might be from gilad@benyossef.com are

scatterlist-reorder-compound-boolean-expression.patch
scatterlist-do-not-disable-irqs-in-sg_copy_buffer.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-07  0:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-07  0:28 + scatterlist-reorder-compound-boolean-expression.patch added to -mm tree akpm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).