Hi Dan, I'm trying to 'fix' three smatch warnings in the media subsystem: drivers/media/common/siano/smscoreapi.c:650 smscore_register_device() warn: use 'gfp_buf_flags' here instead of GFP_KERNEL? drivers/media/common/siano/smscoreapi.c:689 smscore_register_device() warn: use 'gfp_buf_flags' here instead of GFP_KERNEL? drivers/staging/media/ipu3/ipu3-dmamap.c:42 imgu_dmamap_alloc_buffer() warn: use 'gfp' here instead of GFP_KERNEL? However, the code is perfectly fine, the 'gfp' flags are not for the initial allocation but used later one. I don't really see a way to easily shut up smatch. Any suggestions? Regards, Hans