[PATCH 1/5] Add memset_l(), memset32() and memset64()

2017-03-08 Thread Matthew Wilcox
From: Matthew Wilcox memset_l() is like memset() but allows the user to fill the destination with a pattern which fits in an unsigned long. memset32() and memset64() are 32-bit and 64-bit variants of this; memset_l() will call the appropriate one. memset32() is also

[PATCH 1/5] Add memset_l(), memset32() and memset64()

2017-03-08 Thread Matthew Wilcox
From: Matthew Wilcox memset_l() is like memset() but allows the user to fill the destination with a pattern which fits in an unsigned long. memset32() and memset64() are 32-bit and 64-bit variants of this; memset_l() will call the appropriate one. memset32() is also useful by itself, while I