linux-alpha.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] various strscpy fixes
@ 2015-10-06 19:23 Chris Metcalf
  2015-10-06 19:23 ` [PATCH v2 1/3] word-at-a-time.h: fix some Kbuild files Chris Metcalf
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Chris Metcalf @ 2015-10-06 19:23 UTC (permalink / raw)
  To: Michael Cree, Matt Turner, Michael Ellerman, Yoshinori Sato,
	Alexey Dobriyan, Rasmus Villemoes, Ingo Molnar, Linus Torvalds,
	Peter Zijlstra, Thomas Gleixner, H. Peter Anvin, Borislav Petkov,
	linux-alpha, Linux Kernel Mailing List
  Cc: Chris Metcalf

This patch series fixes up a couple of architecture issues where
strscpy wasn't configured correctly (missing on h8300, duplicating
local and asm-generic copies on powerpc and tile).

It also adds a use of zero_bytemask() to the final store for
strscpy to avoid writing uninitialized data to the destination.
However, to make this work we had to add support for zero_bytemask()
to the two architectures that didn't have it (alpha and tile),
because they were providing their own local copies, but didn't
provide the zero_bytemask() that was previously only required
when building with CONFIG_DCACHE_WORD_ACCESS.

The series can be pulled from:

  git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git strscpy

Chris Metcalf (3):
  word-at-a-time.h: fix some Kbuild files
  word-at-a-time.h: support zero_bytemask() on alpha and tile
  strscpy: zero any trailing garbage bytes in the destination

 arch/alpha/include/asm/word-at-a-time.h | 2 ++
 arch/h8300/include/asm/Kbuild           | 1 +
 arch/powerpc/include/asm/Kbuild         | 1 -
 arch/tile/include/asm/Kbuild            | 1 -
 arch/tile/include/asm/word-at-a-time.h  | 8 +++++++-
 lib/string.c                            | 3 ++-
 6 files changed, 12 insertions(+), 4 deletions(-)

-- 
2.1.2

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-10-07 13:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-06 19:23 [PATCH v2 0/3] various strscpy fixes Chris Metcalf
2015-10-06 19:23 ` [PATCH v2 1/3] word-at-a-time.h: fix some Kbuild files Chris Metcalf
2015-10-06 19:23 ` [PATCH v2 2/3] word-at-a-time.h: support zero_bytemask() on alpha and tile Chris Metcalf
2015-10-07  5:53   ` Ingo Molnar
2015-10-07 13:58     ` Chris Metcalf
2015-10-06 19:23 ` [PATCH v2 3/3] strscpy: zero any trailing garbage bytes in the destination Chris Metcalf
2015-10-07  7:31   ` Ingo Molnar

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).