Commit 0596df00 authored by Wayne Davison's avatar Wayne Davison

Reordered the items inside the file_struct so that alignment padding

should be minimized.
parent 417c99f6
...@@ -407,23 +407,23 @@ struct idev { ...@@ -407,23 +407,23 @@ struct idev {
#define F_NEXT link_u.links->next #define F_NEXT link_u.links->next
struct file_struct { struct file_struct {
time_t modtime;
OFF_T length;
mode_t mode;
union { union {
DEV64_T rdev; /* The device number, if this is a device */ DEV64_T rdev; /* The device number, if this is a device */
char *sum; /* Only a normal file can have a checksum */ char *sum; /* Only a normal file can have a checksum */
char *link; /* Holds symlink string, if a symlink */ char *link; /* Holds symlink string, if a symlink */
} u; } u;
OFF_T length;
char *basename;
char *dirname;
char *basedir;
union { union {
struct idev *idev; struct idev *idev;
struct hlink *links; struct hlink *links;
} link_u; } link_u;
char *basename; time_t modtime;
char *dirname;
char *basedir;
uid_t uid; uid_t uid;
gid_t gid; gid_t gid;
mode_t mode;
uchar flags; /* this item MUST remain last */ uchar flags; /* this item MUST remain last */
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment