All of lore.kernel.org
 help / color / mirror / Atom feed
From: <gregkh@linuxfoundation.org>
To: cmetcalf@ezchip.com, gregkh@linuxfoundation.org,
	mpe@ellerman.id.au, sojkam1@fel.cvut.cz
Cc: <stable@vger.kernel.org>, <stable-commits@vger.kernel.org>
Subject: Patch "arch/powerpc: provide zero_bytemask() for big-endian" has been added to the 3.18-stable tree
Date: Mon, 07 Aug 2017 13:38:19 -0700	[thread overview]
Message-ID: <1502138299100115@kroah.com> (raw)


This is a note to let you know that I've just added the patch titled

    arch/powerpc: provide zero_bytemask() for big-endian

to the 3.18-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     arch-powerpc-provide-zero_bytemask-for-big-endian.patch
and it can be found in the queue-3.18 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From 7a5692e6e533fd379081ab06fb58f3f5ee4d80bc Mon Sep 17 00:00:00 2001
From: Chris Metcalf <cmetcalf@ezchip.com>
Date: Wed, 7 Oct 2015 09:29:11 -0400
Subject: arch/powerpc: provide zero_bytemask() for big-endian

From: Chris Metcalf <cmetcalf@ezchip.com>

commit 7a5692e6e533fd379081ab06fb58f3f5ee4d80bc upstream.

For some reason, only the little-endian flavor of
powerpc provided the zero_bytemask() implementation.

Reported-by: Michal Sojka <sojkam1@fel.cvut.cz>
Acked-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Chris Metcalf <cmetcalf@ezchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 arch/powerpc/include/asm/word-at-a-time.h |    5 +++++
 1 file changed, 5 insertions(+)

--- a/arch/powerpc/include/asm/word-at-a-time.h
+++ b/arch/powerpc/include/asm/word-at-a-time.h
@@ -40,6 +40,11 @@ static inline bool has_zero(unsigned lon
 	return (val + c->high_bits) & ~rhs;
 }
 
+static inline unsigned long zero_bytemask(unsigned long mask)
+{
+	return ~1ul << __fls(mask);
+}
+
 #else
 
 #ifdef CONFIG_64BIT


Patches currently in stable-queue which might be from cmetcalf@ezchip.com are

queue-3.18/strscpy-zero-any-trailing-garbage-bytes-in-the-destination.patch
queue-3.18/make-asm-word-at-a-time.h-available-on-all-architectures.patch
queue-3.18/word-at-a-time.h-support-zero_bytemask-on-alpha-and-tile.patch
queue-3.18/tile-use-global-strscpy-rather-than-private-copy.patch
queue-3.18/tile-add-asm-word-at-a-time.h-and-enable-support-functions.patch
queue-3.18/string-provide-strscpy.patch
queue-3.18/arch-powerpc-provide-zero_bytemask-for-big-endian.patch

                 reply	other threads:[~2017-08-07 20:38 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1502138299100115@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=cmetcalf@ezchip.com \
    --cc=mpe@ellerman.id.au \
    --cc=sojkam1@fel.cvut.cz \
    --cc=stable-commits@vger.kernel.org \
    --cc=stable@vger.kernel.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 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.