Subversion Repositories Kolibri OS

Rev

Rev 6082 | Rev 6936 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6082 Rev 6102
Line 256... Line 256...
256
#undef GFP_MOVABLE_MASK
256
#undef GFP_MOVABLE_MASK
257
#undef GFP_MOVABLE_SHIFT
257
#undef GFP_MOVABLE_SHIFT
Line 258... Line 258...
258
 
258
 
259
static inline bool gfpflags_allow_blocking(const gfp_t gfp_flags)
259
static inline bool gfpflags_allow_blocking(const gfp_t gfp_flags)
260
{
260
{
261
	return gfp_flags & __GFP_DIRECT_RECLAIM;
261
	return (bool __force)(gfp_flags & __GFP_DIRECT_RECLAIM);
Line 262... Line 262...
262
}
262
}
263
 
263
 
264
#ifdef CONFIG_HIGHMEM
264
#ifdef CONFIG_HIGHMEM