Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 137edbaa authored by Guillaume Morin's avatar Guillaume Morin Committed by Greg Kroah-Hartman
Browse files

staging: lustre: llite: rw.c: remove gfp_mask



sparse reported that gfp_mask was of the wrong type to store gfp flags.  The
variable is not used so it can be removed.

Signed-off-by: default avatarGuillaume Morin <guillaume@morinfr.org>
Suggested-by: default avatar <gregkh@linuxfoundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b2435179
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -496,14 +496,9 @@ 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;
	int	       rc    = 0;
	const char       *msg   = NULL;

	gfp_mask = GFP_HIGHUSER & ~__GFP_WAIT;
#ifdef __GFP_NOWARN
	gfp_mask |= __GFP_NOWARN;
#endif
	vmpage = grab_cache_page_nowait(mapping, index);
	if (vmpage != NULL) {
		/* Check if vmpage was truncated or reclaimed */