Searched refs:port_str (Results 1 - 9 of 9) sorted by relevance

/linux-master/arch/um/drivers/
H A Dvde_kern.c73 char *remain, *port_str = NULL, *mode_str = NULL, *last; local
82 remain = split_if_spec(str, &init->vde_switch, mac_out, &port_str,
89 if (port_str != NULL) {
90 init->port = simple_strtoul(port_str, &last, 10);
91 if ((*last != '\0') || (last == port_str)) {
93 port_str);
H A Dumcast_kern.c73 char *port_str = NULL, *ttl_str = NULL, *remain; local
81 remain = split_if_spec(str, mac_out, &init->addr, &port_str, &ttl_str,
89 if (port_str != NULL) {
90 init->lport = simple_strtoul(port_str, &last, 10);
91 if ((*last != '\0') || (last == port_str)) {
93 port_str);
/linux-master/drivers/infiniband/core/
H A Dcma_configfs.c220 char port_str[11]; local
223 snprintf(port_str, sizeof(port_str), "%u", i + 1);
226 port_str,
/linux-master/samples/bpf/
H A Dxdp_tx_iptunnel_user.c113 static int parse_ports(const char *port_str, int *min_port, int *max_port) argument
143 port_str, MAX_IPTNL_ENTRIES);
/linux-master/samples/pktgen/
H A Dfunctions.sh311 local port_str=$1
316 IFS="-" read -ra port_list <<< $port_str
/linux-master/drivers/target/iscsi/
H A Discsi_target_configfs.c161 char *str, *str2, *ip_str, *port_str; local
186 port_str = strstr(str2, ":");
187 if (!port_str) {
192 *port_str = '\0'; /* Terminate string for IP */
193 port_str++; /* Skip over ":" */
196 port_str = strstr(ip_str, ":");
197 if (!port_str) {
202 *port_str = '\0'; /* Terminate string for IP */
203 port_str++; /* Skip over ":" */
207 port_str,
[all...]
/linux-master/drivers/infiniband/ulp/rtrs/
H A Drtrs.c458 char port_str[8]; local
462 snprintf(port_str, sizeof(port_str), "%u", port);
465 cpy, port_str, dst) : -ENOMEM;
/linux-master/drivers/infiniband/ulp/srp/
H A Dib_srp.c3295 char *port_str; local
3300 port_str = strrchr(addr, ':');
3301 if (port_str && strchr(port_str, ']'))
3302 port_str = NULL;
3303 if (port_str)
3304 *port_str++ = '\0';
3306 *has_port = port_str != NULL;
3307 ret = inet_pton_with_scope(net, AF_INET, addr, port_str, sa);
3313 port_str, s
[all...]
/linux-master/net/tipc/
H A Dnetlink_compat.c897 char port_str[27]; local
953 sprintf(port_str, "<%u.%u.%u:%u>", tipc_zone(node), tipc_cluster(node),
955 tipc_tlv_sprintf(msg->rep, "%-26s ", port_str);

Completed in 134 milliseconds