mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	codafs: fix compile warning when CONFIG_SYSCTL=n
When CONFIG_SYSCTL=n, we get the following warning: fs/coda/sysctl.c:18: warning: `coda_tabl' defined but not used Fix the warning by making sure coda_table and it's callee function are in the same context. Also clean up the code by removing extra #ifdef. [akpm@linux-foundation.org: remove unneeded stub macros] Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com> Cc: Jan Harkes <jaharkes@cs.cmu.edu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									1c00f0161f
								
							
						
					
					
						commit
						0bc825d240
					
				
					 1 changed files with 1 additions and 7 deletions
				
			
		| 
						 | 
					@ -13,7 +13,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_SYSCTL
 | 
					#ifdef CONFIG_SYSCTL
 | 
				
			||||||
static struct ctl_table_header *fs_table_header;
 | 
					static struct ctl_table_header *fs_table_header;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
static ctl_table coda_table[] = {
 | 
					static ctl_table coda_table[] = {
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
| 
						 | 
					@ -40,7 +39,6 @@ static ctl_table coda_table[] = {
 | 
				
			||||||
	{}
 | 
						{}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_SYSCTL
 | 
					 | 
				
			||||||
static ctl_table fs_table[] = {
 | 
					static ctl_table fs_table[] = {
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		.procname	= "coda",
 | 
							.procname	= "coda",
 | 
				
			||||||
| 
						 | 
					@ -49,22 +47,18 @@ static ctl_table fs_table[] = {
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	{}
 | 
						{}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
void coda_sysctl_init(void)
 | 
					void coda_sysctl_init(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifdef CONFIG_SYSCTL
 | 
					 | 
				
			||||||
	if ( !fs_table_header )
 | 
						if ( !fs_table_header )
 | 
				
			||||||
		fs_table_header = register_sysctl_table(fs_table);
 | 
							fs_table_header = register_sysctl_table(fs_table);
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void coda_sysctl_clean(void)
 | 
					void coda_sysctl_clean(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifdef CONFIG_SYSCTL
 | 
					 | 
				
			||||||
	if ( fs_table_header ) {
 | 
						if ( fs_table_header ) {
 | 
				
			||||||
		unregister_sysctl_table(fs_table_header);
 | 
							unregister_sysctl_table(fs_table_header);
 | 
				
			||||||
		fs_table_header = NULL;
 | 
							fs_table_header = NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue