Re: [PATCH v3 RESEND 1/1] staging: ion: debugfs invalid gfp mask

2016-03-11 Thread Greg KH
On Sun, Mar 06, 2016 at 11:19:23AM -0500, Derek Yerger wrote: > From drivers/staging/android TODO file - sparse errors. > > The current code attempts assignment of -1 to an unsigned type. Note that in a > downstream function ion_page_pool_shrink this mask is only ever evaluated > against __GFP_HIG

[PATCH v3 RESEND 1/1] staging: ion: debugfs invalid gfp mask

2016-03-06 Thread Derek Yerger
From drivers/staging/android TODO file - sparse errors. The current code attempts assignment of -1 to an unsigned type. Note that in a downstream function ion_page_pool_shrink this mask is only ever evaluated against __GFP_HIGHMEM (drivers/staging/android/ion/ion_page_pool.c, line 125). Signed-o