Home | History | Annotate | Download | only in linux
      1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
      2 #ifndef _NCP_NO
      3 #define _NCP_NO
      4 
      5 /* these define the attribute byte as seen by NCP */
      6 #define aRONLY			(__cpu_to_le32(1))
      7 #define aHIDDEN			(__cpu_to_le32(2))
      8 #define aSYSTEM			(__cpu_to_le32(4))
      9 #define aEXECUTE		(__cpu_to_le32(8))
     10 #define aDIR			(__cpu_to_le32(0x10))
     11 #define aARCH			(__cpu_to_le32(0x20))
     12 #define aSHARED			(__cpu_to_le32(0x80))
     13 #define aDONTSUBALLOCATE	(__cpu_to_le32(1L<<11))
     14 #define aTRANSACTIONAL		(__cpu_to_le32(1L<<12))
     15 #define aPURGE			(__cpu_to_le32(1L<<16))
     16 #define aRENAMEINHIBIT		(__cpu_to_le32(1L<<17))
     17 #define aDELETEINHIBIT		(__cpu_to_le32(1L<<18))
     18 #define aDONTCOMPRESS		(__cpu_to_le32(1L<<27))
     19 
     20 #endif /* _NCP_NO */
     21