Blame view

kernel/linux-imx6_3.14.28/include/linux/nfsd/debug.h 401 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * linux/include/linux/nfsd/debug.h
   *
   * Debugging-related stuff for nfsd
   *
   * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
   */
  #ifndef LINUX_NFSD_DEBUG_H
  #define LINUX_NFSD_DEBUG_H
  
  #include <uapi/linux/nfsd/debug.h>
  
  # undef ifdebug
  # ifdef NFSD_DEBUG
  #  define ifdebug(flag)		if (nfsd_debug & NFSDDBG_##flag)
  # else
  #  define ifdebug(flag)		if (0)
  # endif
  #endif /* LINUX_NFSD_DEBUG_H */