mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	checkpatch: add warning of future __GFP_NOFAIL use
gfp.h and page_alloc.c already specify that __GFP_NOFAIL is deprecated and no new users should be added. Add a warning to checkpatch to catch this. Signed-off-by: David Rientjes <rientjes@google.com> Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									d2e248e7b0
								
							
						
					
					
						commit
						7e4915e789
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -4113,6 +4113,12 @@ sub process {
 | 
			
		|||
			     "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
# check for GFP_NOWAIT use
 | 
			
		||||
		if ($line =~ /\b__GFP_NOFAIL\b/) {
 | 
			
		||||
			WARN("__GFP_NOFAIL",
 | 
			
		||||
			     "Use of __GFP_NOFAIL is deprecated, no new users should be added\n" . $herecurr);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
# check for multiple semicolons
 | 
			
		||||
		if ($line =~ /;\s*;\s*$/) {
 | 
			
		||||
			if (WARN("ONE_SEMICOLON",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue