From: Ian Kent I have made almost all the changes recommended by Christoph. I'm reluctant to change the type of autofs_wqt_t as it is part of the existing autofs4 struture. While such a change shouldn't cause a problem I'd rather not change what's been there for a long time just in case there are unexpected side effects. Signed-off-by: Ian Kent Signed-off-by: Andrew Morton --- include/linux/auto_fs4.h | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff -puN include/linux/auto_fs4.h~autofs4-add-new-packet-type-for-v5-communications-fix include/linux/auto_fs4.h --- devel/include/linux/auto_fs4.h~autofs4-add-new-packet-type-for-v5-communications-fix 2006-02-22 00:53:35.000000000 -0800 +++ devel-akpm/include/linux/auto_fs4.h 2006-02-22 00:53:35.000000000 -0800 @@ -65,11 +65,11 @@ struct autofs_v5_packet { autofs_wqt_t wait_queue_token; __u32 dev; __u64 ino; - uid_t uid; - gid_t gid; - pid_t pid; - pid_t tgid; - int len; + __u32 uid; + __u32 gid; + __u32 pid; + __u32 tgid; + __u32 len; char name[NAME_MAX+1]; }; _