Kernel+LibC: Use 64 bit values for ino_t

Since the InodeIndex encapsulates a 64 bit value, it is correct to
ensure that the Kernel is exposing the entire value and the LibC is
aware of it.

This commit requires an entire re-compile because it's essentially a
change in the Kernel ABI, together with a corresponding change in LibC.
This commit is contained in:
Liav A 2021-08-08 21:23:27 +03:00 committed by Andreas Kling
commit bf1adc2d5d
Notes: sideshowbarker 2024-07-18 07:04:29 +09:00
6 changed files with 7 additions and 6 deletions

View file

@ -357,7 +357,7 @@ enum {
#define TCSAFLUSH 2
typedef u32 dev_t;
typedef u32 ino_t;
typedef u64 ino_t;
typedef u16 mode_t;
typedef u32 nlink_t;
typedef u32 uid_t;