I've been looking at replacing the current scheme that knfsd uses to track client_id4's (aka the v4recoverydir stuff), with an upcall/downcall scheme. Primarily this is to allow for more robust handling of clustered NFSv4 services. In the process, I've been looking at the various upcall schemes we use to see which ones might be suitable to use in this effort. I've noticed that we have several upcalls that use rpc_pipefs, and that all of them seem to make assumptions that the userspace programs will align their message structs identically to how the kernel does. For instance, here's the idmap one: struct idmap_msg { __u8 im_type; __u8 im_conv; char im_name[IDMAP_NAMESZ]; __u32 im_id; __u8 im_status; }; Note that this struct does not have __attribute__((packed)), so the compiler is allowed to add padding between the fields as it sees fit. If, for instance, someone were to build the userspace programs differently than the kernel (for instance x86_64 kernel with i686 userspace), it's possible that the padding between them would be different. It's also possible that different compilers might align things differently here. The blocklayout upcall is even more scary as the width of the status field is not explicit: struct bl_dev_msg { int status; uint32_t major, minor; }; ...it's unlikely that the kernel and userspace would differ on the size of an int here, but it might be a good idea to go ahead and make that explicitly 32 bits in case we end up dealing with more exotic arches at some point in the future. I'm not sure what we can really do about this at this point. Adding this attribute now would definitely be an kernel/userspace compatibility issue. One possibility is to add padding between the fields that aligns with the current padding that the compiler adds and then make them "packed". That might make these structs arch-specific though since different arches probably pad these differently... :-/ Am I making mountains out of molehills here? Thoughts? -- Jeff Layton <jlayton@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html