I don't think this it the reason it was being used here.
Any, for one thing, we definitely cannot remove the existing packed
markers or else we will break every single userland tool out there
using these socket address structures.
Even the first two members (sa_family_t and unsigned int) will be
positioned differently if we remove the marker.
I suspect the packed attribute is there to make sure the pppo* socket
address structures fit within the generic socket address object size.
(see struct __kernel_sockaddr_storage and struct sockaddr).
As to the problem at-hand, I think we need to use __attribute__((packed))
here. And that's what I'll commit into net-2.6 and net-next-2.6
--