diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-07-27 00:54:47 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-07-27 00:54:47 -0700 | 
| commit | aa7eb8e78d8ecd6cd0475d86ea8385ff9cb47ece (patch) | |
| tree | 3f9e98fadd5124fb05e8f6f9b06aa23698d4f215 /net/tipc/port.h | |
| parent | cca8edfd2ec2a34d9f50f593bc753bb11e1bc1f5 (diff) | |
| parent | 3c6b50141ef9f0a8844bf1357b80c0cdf518bf05 (diff) | |
Merge branch 'next' into for-linus
Diffstat (limited to 'net/tipc/port.h')
| -rw-r--r-- | net/tipc/port.h | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/net/tipc/port.h b/net/tipc/port.h index 87b9424ae0e..b9aa34195ae 100644 --- a/net/tipc/port.h +++ b/net/tipc/port.h @@ -205,23 +205,27 @@ int tipc_disconnect_port(struct tipc_port *tp_ptr);  /*   * TIPC messaging routines   */ -int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect); +int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect, +	      unsigned int total_len);  int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain, -		unsigned int num_sect, struct iovec const *msg_sect); +		   unsigned int num_sect, struct iovec const *msg_sect, +		   unsigned int total_len);  int tipc_send2port(u32 portref, struct tipc_portid const *dest, -		unsigned int num_sect, struct iovec const *msg_sect); +		   unsigned int num_sect, struct iovec const *msg_sect, +		   unsigned int total_len);  int tipc_send_buf2port(u32 portref, struct tipc_portid const *dest,  		struct sk_buff *buf, unsigned int dsz);  int tipc_multicast(u32 portref, struct tipc_name_seq const *seq, -		unsigned int section_count, struct iovec const *msg); +		   unsigned int section_count, struct iovec const *msg, +		   unsigned int total_len);  int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,  			      struct iovec const *msg_sect, u32 num_sect, -			      int err); +			      unsigned int total_len, int err);  struct sk_buff *tipc_port_get_ports(void);  void tipc_port_recv_proto_msg(struct sk_buff *buf);  void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp);  | 
