Lines Matching refs:rep_tlv_buf
224 struct sk_buff *rep_tlv_buf; in tipc_cfg_do_cmd() local
237 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED in tipc_cfg_do_cmd()
245 rep_tlv_buf = tipc_cfg_reply_none(); in tipc_cfg_do_cmd()
248 rep_tlv_buf = tipc_node_get_nodes(req_tlv_area, req_tlv_space); in tipc_cfg_do_cmd()
251 rep_tlv_buf = tipc_node_get_links(req_tlv_area, req_tlv_space); in tipc_cfg_do_cmd()
254 rep_tlv_buf = tipc_link_cmd_show_stats(req_tlv_area, req_tlv_space); in tipc_cfg_do_cmd()
257 rep_tlv_buf = tipc_link_cmd_reset_stats(req_tlv_area, req_tlv_space); in tipc_cfg_do_cmd()
260 rep_tlv_buf = tipc_nametbl_get(req_tlv_area, req_tlv_space); in tipc_cfg_do_cmd()
263 rep_tlv_buf = tipc_bearer_get_names(); in tipc_cfg_do_cmd()
266 rep_tlv_buf = tipc_media_get_names(); in tipc_cfg_do_cmd()
269 rep_tlv_buf = tipc_sk_socks_show(); in tipc_cfg_do_cmd()
272 rep_tlv_buf = tipc_show_stats(); in tipc_cfg_do_cmd()
277 rep_tlv_buf = tipc_link_cmd_config(req_tlv_area, req_tlv_space, cmd); in tipc_cfg_do_cmd()
280 rep_tlv_buf = cfg_enable_bearer(); in tipc_cfg_do_cmd()
283 rep_tlv_buf = cfg_disable_bearer(); in tipc_cfg_do_cmd()
286 rep_tlv_buf = cfg_set_own_addr(); in tipc_cfg_do_cmd()
289 rep_tlv_buf = cfg_set_max_ports(); in tipc_cfg_do_cmd()
292 rep_tlv_buf = cfg_set_netid(); in tipc_cfg_do_cmd()
295 rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_max_ports); in tipc_cfg_do_cmd()
298 rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_net_id); in tipc_cfg_do_cmd()
301 rep_tlv_buf = in tipc_cfg_do_cmd()
320 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED in tipc_cfg_do_cmd()
324 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED in tipc_cfg_do_cmd()
329 WARN_ON(rep_tlv_buf->len > TLV_SPACE(ULTRA_STRING_MAX_LEN)); in tipc_cfg_do_cmd()
332 if (rep_tlv_buf->len == TLV_SPACE(ULTRA_STRING_MAX_LEN)) { in tipc_cfg_do_cmd()
333 if (*(rep_tlv_buf->data + ULTRA_STRING_MAX_LEN) != '\0') in tipc_cfg_do_cmd()
334 sprintf(rep_tlv_buf->data + rep_tlv_buf->len - in tipc_cfg_do_cmd()
341 return rep_tlv_buf; in tipc_cfg_do_cmd()