Merge branch 'KASAN-read_word_at_a_time'
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 1 Feb 2018 20:20:53 +0000 (12:20 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 1 Feb 2018 20:20:53 +0000 (12:20 -0800)
commit8e44e6600caa7b96a5b71ae36c8829db753c2d70
treeb6cc9e2f7f703e2869a3d1f4e18b4e47b3c2cb21
parent562f36ed28e6faa4245ea2ca1392d90ab98ebbe8
parentbabcbbc7c4e2fa7fa76417ece7c57083bee971f1
Merge branch 'KASAN-read_word_at_a_time'

Merge KASAN word-at-a-time fixups from Andrey Ryabinin.

The word-at-a-time optimizations have caused headaches for KASAN, since
the whole point is that we access byte streams in bigger chunks, and
KASAN can be unhappy about the potential extra access at the end of the
string.

We used to have a horrible hack in dcache, and then people got
complaints from the strscpy() case.  This fixes it all up properly, by
adding an explicit helper for the "access byte stream one word at a
time" case.

* emailed patches from Andrey Ryabinin <aryabinin@virtuozzo.com>:
  fs: dcache: Revert "manually unpoison dname after allocation to shut up kasan's reports"
  fs/dcache: Use read_word_at_a_time() in dentry_string_cmp()
  lib/strscpy: Shut up KASAN false-positives in strscpy()
  compiler.h: Add read_word_at_a_time() function.
  compiler.h, kasan: Avoid duplicating __read_once_size_nocheck()
fs/dcache.c