Blame view

fs/ntfs/sysctl.h 613 Bytes
a1d312de7   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /*
   * sysctl.h - Defines for sysctl handling in NTFS Linux kernel driver. Part of
   *	      the Linux-NTFS project. Adapted from the old NTFS driver,
96de0e252   Jan Engelhardt   Convert files to ...
5
   *	      Copyright (C) 1997 Martin von Löwis, Régis Duchesne
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
   *
   * Copyright (c) 2002-2004 Anton Altaparmakov
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
   */
  
  #ifndef _LINUX_NTFS_SYSCTL_H
  #define _LINUX_NTFS_SYSCTL_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12

44456d37b   Olaf Hering   [PATCH] turn many...
13
  #if defined(DEBUG) && defined(CONFIG_SYSCTL)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
21
22
23
24
25
26
  
  extern int ntfs_sysctl(int add);
  
  #else
  
  /* Just return success. */
  static inline int ntfs_sysctl(int add)
  {
  	return 0;
  }
  
  #endif /* DEBUG && CONFIG_SYSCTL */
  #endif /* _LINUX_NTFS_SYSCTL_H */