Commit 3d2aef668920e8d93b77f145f8f647f62abe75db

Authored by Randy Dunlap
Committed by David S. Miller
1 parent dd13a285b7

[TEXTSEARCH]: fix sparse gfp nocast warnings

Fix nocast sparse warnings:
include/linux/textsearch.h:165:57: warning: implicit cast to nocast type

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 4 changed files with 5 additions and 4 deletions Side-by-side Diff

include/linux/textsearch.h
... ... @@ -158,7 +158,8 @@
158 158 #define TS_PRIV_ALIGNTO 8
159 159 #define TS_PRIV_ALIGN(len) (((len) + TS_PRIV_ALIGNTO-1) & ~(TS_PRIV_ALIGNTO-1))
160 160  
161   -static inline struct ts_config *alloc_ts_config(size_t payload, int gfp_mask)
  161 +static inline struct ts_config *alloc_ts_config(size_t payload,
  162 + unsigned int __nocast gfp_mask)
162 163 {
163 164 struct ts_config *conf;
164 165  
... ... @@ -127,7 +127,7 @@
127 127 }
128 128  
129 129 static struct ts_config *bm_init(const void *pattern, unsigned int len,
130   - int gfp_mask)
  130 + unsigned int __nocast gfp_mask)
131 131 {
132 132 struct ts_config *conf;
133 133 struct ts_bm *bm;
... ... @@ -258,7 +258,7 @@
258 258 }
259 259  
260 260 static struct ts_config *fsm_init(const void *pattern, unsigned int len,
261   - int gfp_mask)
  261 + unsigned int __nocast gfp_mask)
262 262 {
263 263 int i, err = -EINVAL;
264 264 struct ts_config *conf;
... ... @@ -87,7 +87,7 @@
87 87 }
88 88  
89 89 static struct ts_config *kmp_init(const void *pattern, unsigned int len,
90   - int gfp_mask)
  90 + unsigned int __nocast gfp_mask)
91 91 {
92 92 struct ts_config *conf;
93 93 struct ts_kmp *kmp;