forked from mirrors/linux
		
	The old lock tracking infrastructure in xfs using the b_last_holder field seems to only be useful if you can get into the system with a debugger; it seems that the existing tracepoints would be the way to go these days, and this old infrastructure can be removed. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
 | 
						|
 * All Rights Reserved.
 | 
						|
 */
 | 
						|
#ifndef __XFS_H__
 | 
						|
#define __XFS_H__
 | 
						|
 | 
						|
#ifdef CONFIG_XFS_DEBUG
 | 
						|
#define DEBUG 1
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CONFIG_XFS_ASSERT_FATAL
 | 
						|
#define XFS_ASSERT_FATAL 1
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CONFIG_XFS_WARN
 | 
						|
#define XFS_WARN 1
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
#include "xfs_linux.h"
 | 
						|
 | 
						|
#endif	/* __XFS_H__ */
 |