lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <22be101821a4af2c92ca597832cbb720c655418e.1405990074.git.guillaume@morinfr.org> Date: Tue, 22 Jul 2014 02:57:57 +0200 From: Guillaume Morin <guillaume@...infr.org> To: gregkh@...uxfoundation.org Cc: Guillaume Morin <guillaume@...infr.org>, devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org, oleg.drokin@...el.com, jinshan.xiong@...el.com, lai.siyao@...el.com, joe@...ches.com, bergwolf@...il.com, john.hammond@...el.com, sachin.kamat@...aro.org Subject: [PATCH] staging: llite: rw.c: use gfp_t to store GFP flags Use gfp_t to store GPF_* flags instead of unsigned int. This was reported by sparse. Signed-off-by: Guillaume Morin <guillaume@...infr.org> --- drivers/staging/lustre/lustre/llite/rw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/llite/rw.c b/drivers/staging/lustre/lustre/llite/rw.c index 5616210..3554272 100644 --- a/drivers/staging/lustre/lustre/llite/rw.c +++ b/drivers/staging/lustre/lustre/llite/rw.c @@ -496,7 +496,7 @@ static int ll_read_ahead_page(const struct lu_env *env, struct cl_io *io, struct cl_object *clob = ll_i2info(mapping->host)->lli_clob; struct cl_page *page; enum ra_stat which = _NR_RA_STAT; /* keep gcc happy */ - unsigned int gfp_mask; + gfp_t gfp_mask; int rc = 0; const char *msg = NULL; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists