Re: [PATCH RFC] xen-block: correctly define structures in public headers

2013-12-03 Thread Roger Pau Monné
On 03/12/13 12:01, David Vrabel wrote: > On 03/12/13 10:57, Roger Pau Monne wrote: >> Using __packed__ on the public interface is not correct, this >> structures should be compiled using the native ABI, and __packed__ >> should only be used in the backend counterpart of those structures >> (which n

Re: [PATCH RFC] xen-block: correctly define structures in public headers

2013-12-03 Thread David Vrabel
On 03/12/13 10:57, Roger Pau Monne wrote: > Using __packed__ on the public interface is not correct, this > structures should be compiled using the native ABI, and __packed__ > should only be used in the backend counterpart of those structures > (which needs to handle different ABIs). > > This was