mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	string: introduce helper to get base file name from given path
There are several places in the kernel that use functionality like basename(3) with the exception: in case of '/foo/bar/' we expect to get an empty string. Let's do it common helper for them. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Jason Baron <jbaron@redhat.com> Cc: YAMANE Toshiaki <yamanetoshi@gmail.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.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
							
								
									0edd807dc9
								
							
						
					
					
						commit
						b18888ab25
					
				
					 1 changed files with 11 additions and 0 deletions
				
			
		| 
						 | 
					@ -143,4 +143,15 @@ static inline bool strstarts(const char *str, const char *prefix)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern size_t memweight(const void *ptr, size_t bytes);
 | 
					extern size_t memweight(const void *ptr, size_t bytes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * kbasename - return the last part of a pathname.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @path: path to extract the filename from.
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					static inline const char *kbasename(const char *path)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						const char *tail = strrchr(path, '/');
 | 
				
			||||||
 | 
						return tail ? tail + 1 : path;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _LINUX_STRING_H_ */
 | 
					#endif /* _LINUX_STRING_H_ */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue