You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Revert d88dca79d3
TIPC needs to have its endianess issues fixed. Unfortunately, the format of a subscriber message is passed in directly from user space, so requiring this message to be in network byte order breaks user space ABI. Revert this change until such time as we can determine how to do this in a backwards compatible manner. Signed-off-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
8c97443808
commit
db5a753bf1
@@ -53,6 +53,7 @@ typedef void (*tipc_subscr_event) (struct subscription *sub,
|
||||
* @nameseq_list: adjacent subscriptions in name sequence's subscription list
|
||||
* @subscription_list: adjacent subscriptions in subscriber's subscription list
|
||||
* @server_ref: object reference of server port associated with subscription
|
||||
* @swap: indicates if subscriber uses opposite endianness in its messages
|
||||
* @evt: template for events generated by subscription
|
||||
*/
|
||||
|
||||
@@ -65,6 +66,7 @@ struct subscription {
|
||||
struct list_head nameseq_list;
|
||||
struct list_head subscription_list;
|
||||
u32 server_ref;
|
||||
int swap;
|
||||
struct tipc_event evt;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user