mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	xfs: include WARN, REPAIR build options in XFS_BUILD_OPTIONS
The XFS_BUILD_OPTIONS string, shown at module init time and in modinfo output, does not currently include all available build options. So, add in CONFIG_XFS_WARN and CONFIG_XFS_REPAIR. It has been suggested in some quarters That this is not enough. Well ... Anybody who would like to see this in a sysfs file can send a patch. :) Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Bill O'Donnell <billodo@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
		
							parent
							
								
									4b4d98cca3
								
							
						
					
					
						commit
						d03a2f1b9f
					
				
					 1 changed files with 14 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -38,6 +38,18 @@ extern void xfs_qm_exit(void);
 | 
			
		|||
# define XFS_SCRUB_STRING
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef CONFIG_XFS_ONLINE_REPAIR
 | 
			
		||||
# define XFS_REPAIR_STRING	"repair, "
 | 
			
		||||
#else
 | 
			
		||||
# define XFS_REPAIR_STRING
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef CONFIG_XFS_WARN
 | 
			
		||||
# define XFS_WARN_STRING	"verbose warnings, "
 | 
			
		||||
#else
 | 
			
		||||
# define XFS_WARN_STRING
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef DEBUG
 | 
			
		||||
# define XFS_DBG_STRING		"debug"
 | 
			
		||||
#else
 | 
			
		||||
| 
						 | 
				
			
			@ -49,6 +61,8 @@ extern void xfs_qm_exit(void);
 | 
			
		|||
				XFS_SECURITY_STRING \
 | 
			
		||||
				XFS_REALTIME_STRING \
 | 
			
		||||
				XFS_SCRUB_STRING \
 | 
			
		||||
				XFS_REPAIR_STRING \
 | 
			
		||||
				XFS_WARN_STRING \
 | 
			
		||||
				XFS_DBG_STRING /* DBG must be last */
 | 
			
		||||
 | 
			
		||||
struct xfs_inode;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue