diff options
Diffstat (limited to 'net/tipc/msg.h')
| -rw-r--r-- | net/tipc/msg.h | 21 | 
1 files changed, 0 insertions, 21 deletions
diff --git a/net/tipc/msg.h b/net/tipc/msg.h index eba524e34a6..ba2a72beea6 100644 --- a/net/tipc/msg.h +++ b/net/tipc/msg.h @@ -44,7 +44,6 @@   *   * Note: Some items are also used with TIPC internal message headers   */ -  #define TIPC_VERSION              2  /* @@ -58,7 +57,6 @@  /*   * Payload message types   */ -  #define TIPC_CONN_MSG		0  #define TIPC_MCAST_MSG		1  #define TIPC_NAMED_MSG		2 @@ -67,7 +65,6 @@  /*   * Message header sizes   */ -  #define SHORT_H_SIZE              24	/* In-cluster basic payload message */  #define BASIC_H_SIZE              32	/* Basic payload message */  #define NAMED_H_SIZE              40	/* Named payload message */ @@ -121,7 +118,6 @@ static inline void msg_swap_words(struct tipc_msg *msg, u32 a, u32 b)  /*   * Word 0   */ -  static inline u32 msg_version(struct tipc_msg *m)  {  	return msg_bits(m, 0, 29, 7); @@ -216,7 +212,6 @@ static inline void msg_set_size(struct tipc_msg *m, u32 sz)  /*   * Word 1   */ -  static inline u32 msg_type(struct tipc_msg *m)  {  	return msg_bits(m, 1, 29, 0x7); @@ -291,7 +286,6 @@ static inline void msg_set_bcast_ack(struct tipc_msg *m, u32 n)  /*   * Word 2   */ -  static inline u32 msg_ack(struct tipc_msg *m)  {  	return msg_bits(m, 2, 16, 0xffff); @@ -315,8 +309,6 @@ static inline void msg_set_seqno(struct tipc_msg *m, u32 n)  /*   * Words 3-10   */ - -  static inline u32 msg_prevnode(struct tipc_msg *m)  {  	return msg_word(m, 3); @@ -434,7 +426,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  	return (struct tipc_msg *)msg_data(m);  } -  /*   * Constants and routines used to read and write TIPC internal message headers   */ @@ -442,7 +433,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   * Internal message users   */ -  #define  BCAST_PROTOCOL       5  #define  MSG_BUNDLER          6  #define  LINK_PROTOCOL        7 @@ -456,7 +446,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   *  Connection management protocol message types   */ -  #define CONN_PROBE        0  #define CONN_PROBE_REPLY  1  #define CONN_ACK          2 @@ -464,14 +453,12 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   * Name distributor message types   */ -  #define PUBLICATION       0  #define WITHDRAWAL        1  /*   * Segmentation message types   */ -  #define FIRST_FRAGMENT		0  #define FRAGMENT		1  #define LAST_FRAGMENT		2 @@ -479,7 +466,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   * Link management protocol message types   */ -  #define STATE_MSG		0  #define RESET_MSG		1  #define ACTIVATE_MSG		2 @@ -493,7 +479,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   * Config protocol message types   */ -  #define DSC_REQ_MSG		0  #define DSC_RESP_MSG		1 @@ -501,7 +486,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)  /*   * Word 1   */ -  static inline u32 msg_seq_gap(struct tipc_msg *m)  {  	return msg_bits(m, 1, 16, 0x1fff); @@ -526,7 +510,6 @@ static inline void msg_set_node_sig(struct tipc_msg *m, u32 n)  /*   * Word 2   */ -  static inline u32 msg_dest_domain(struct tipc_msg *m)  {  	return msg_word(m, 2); @@ -561,7 +544,6 @@ static inline void msg_set_bcgap_to(struct tipc_msg *m, u32 n)  /*   * Word 4   */ -  static inline u32 msg_last_bcast(struct tipc_msg *m)  {  	return msg_bits(m, 4, 16, 0xffff); @@ -628,7 +610,6 @@ static inline void msg_set_link_selector(struct tipc_msg *m, u32 n)  /*   * Word 5   */ -  static inline u32 msg_session(struct tipc_msg *m)  {  	return msg_bits(m, 5, 16, 0xffff); @@ -697,7 +678,6 @@ static inline char *msg_media_addr(struct tipc_msg *m)  /*   * Word 9   */ -  static inline u32 msg_msgcnt(struct tipc_msg *m)  {  	return msg_bits(m, 9, 16, 0xffff); @@ -744,5 +724,4 @@ void tipc_msg_init(struct tipc_msg *m, u32 user, u32 type,  int tipc_msg_build(struct tipc_msg *hdr, struct iovec const *msg_sect,  		   u32 num_sect, unsigned int total_len,  			    int max_size, int usrmem, struct sk_buff **buf); -  #endif  |