Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_DIRENT_H |
| 3 | #define _LINUX_DIRENT_H |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | struct linux_dirent64 { |
| 6 | u64 d_ino; |
| 7 | s64 d_off; |
| 8 | unsigned short d_reclen; |
| 9 | unsigned char d_type; |
Gustavo A. R. Silva | a200839 | 2020-03-23 17:17:52 -0500 | [diff] [blame] | 10 | char d_name[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | }; |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #endif |