Lines Matching full:linux
27 * Generates a Linux device number (a.k.a. dev_t) for given device major
32 * Linux's format (mmmM_MMmm, 32 bits), as described in <bits/sysmacros.h>.
49 * Converts given device number from host's device number format to Linux
51 * dev_t is system dependent, we have to convert them for Linux guests if
52 * host is not running Linux.
63 /* Translates errno from host -> Linux if needed */
66 /* nothing to translate (Linux -> Linux) */ in errno_to_dotl()
75 err = 36; /* ==ENAMETOOLONG on Linux */ in errno_to_dotl()
77 err = 39; /* ==ENOTEMPTY on Linux */ in errno_to_dotl()
79 err = 40; /* ==ELOOP on Linux */ in errno_to_dotl()
81 err = 61; /* ==ENODATA on Linux */ in errno_to_dotl()
83 err = 95; /* ==EOPNOTSUPP on Linux */ in errno_to_dotl()
85 err = 95; /* ==EOPNOTSUPP on Linux */ in errno_to_dotl()
88 #error Missing errno translation to Linux for this host system in errno_to_dotl()
169 * doesn't break the semantics on the client side, as the Linux in openat_file()