[net][netdev] Delete network commands interrupt disable processing

Signed-off-by: chenyong <1521761801@qq.com>
This commit is contained in:
chenyong 2019-07-02 20:33:10 +08:00
parent 48857d1e67
commit dcd8b8029b
5 changed files with 19 additions and 34 deletions

View File

@ -160,7 +160,7 @@ static int lwip_netdev_set_dhcp(struct netdev *netif, rt_bool_t is_enabled)
}
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
extern int lwip_ping_recv(int s, int *ttl);
extern err_t lwip_ping_send(int s, ip_addr_t *addr, int size);
@ -251,7 +251,7 @@ void lwip_netdev_netstat(struct netdev *netif)
#endif
}
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
const struct netdev_ops lwip_netdev_ops =
{
@ -271,7 +271,7 @@ const struct netdev_ops lwip_netdev_ops =
NULL,
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
lwip_netdev_ping,
#else
@ -281,7 +281,7 @@ const struct netdev_ops lwip_netdev_ops =
#if defined (RT_LWIP_TCP) || defined (RT_LWIP_UDP)
lwip_netdev_netstat,
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
};
static int netdev_add(struct netif *lwip_netif)

View File

@ -168,7 +168,7 @@ static int lwip_netdev_set_dhcp(struct netdev *netif, rt_bool_t is_enabled)
}
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
extern int lwip_ping_recv(int s, int *ttl);
extern err_t lwip_ping_send(int s, ip_addr_t *addr, int size);
@ -259,7 +259,7 @@ void lwip_netdev_netstat(struct netdev *netif)
#endif
}
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
const struct netdev_ops lwip_netdev_ops =
{
@ -279,7 +279,7 @@ const struct netdev_ops lwip_netdev_ops =
NULL,
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
lwip_netdev_ping,
#else
@ -289,7 +289,7 @@ const struct netdev_ops lwip_netdev_ops =
#if defined (RT_LWIP_TCP) || defined (RT_LWIP_UDP)
lwip_netdev_netstat,
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
};
static int netdev_add(struct netif *lwip_netif)

View File

@ -169,7 +169,7 @@ static int lwip_netdev_set_dhcp(struct netdev *netif, rt_bool_t is_enabled)
}
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
extern int lwip_ping_recv(int s, int *ttl);
extern err_t lwip_ping_send(int s, ip_addr_t *addr, int size);
@ -260,7 +260,7 @@ void lwip_netdev_netstat(struct netdev *netif)
#endif
}
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
const struct netdev_ops lwip_netdev_ops =
{
@ -280,7 +280,7 @@ const struct netdev_ops lwip_netdev_ops =
NULL,
#endif /* RT_LWIP_DHCP */
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#ifdef RT_LWIP_USING_PING
lwip_netdev_ping,
#else
@ -290,7 +290,7 @@ const struct netdev_ops lwip_netdev_ops =
#if defined (RT_LWIP_TCP) || defined (RT_LWIP_UDP)
lwip_netdev_netstat,
#endif /* RT_LWIP_TCP || RT_LWIP_UDP */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */
};
static int netdev_add(struct netif *lwip_netif)

View File

@ -132,7 +132,7 @@ struct netdev_ops
int (*set_dns_server)(struct netdev *netdev, uint8_t dns_num, ip_addr_t *dns_server);
int (*set_dhcp)(struct netdev *netdev, rt_bool_t is_enabled);
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
/* set network interface device common network interface device operations */
int (*ping)(struct netdev *netdev, const char *host, size_t data_len, uint32_t timeout, struct netdev_ping_resp *ping_resp);
void (*netstat)(struct netdev *netdev);

View File

@ -821,7 +821,7 @@ void netdev_low_level_set_dhcp_status(struct netdev *netdev, rt_bool_t is_enable
}
}
#ifdef FINSH_USING_MSH
#ifdef RT_USING_FINSH
#include <finsh.h>
@ -832,7 +832,6 @@ static void netdev_list_if(void)
#define NETDEV_IFCONFIG_IEMI_MAX_LEN 8
rt_ubase_t index;
rt_base_t level;
rt_slist_t *node = RT_NULL;
struct netdev *netdev = RT_NULL;
struct netdev *cur_netdev_list = netdev_list;
@ -843,14 +842,12 @@ static void netdev_list_if(void)
return;
}
level = rt_hw_interrupt_disable();
for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
{
netdev = rt_list_entry(node, struct netdev, list);
rt_kprintf("network interface device: %s%s\n",
netdev->name,
rt_kprintf("network interface device: %.*s%s\n",
RT_NAME_MAX, netdev->name,
(netdev == netdev_default) ? " (Default)" : "");
rt_kprintf("MTU: %d\n", netdev->mtu);
@ -925,8 +922,6 @@ static void netdev_list_if(void)
rt_kprintf("\n");
}
}
rt_hw_interrupt_enable(level);
}
static void netdev_set_if(char* netdev_name, char* ip_addr, char* gw_addr, char* nm_addr)
@ -1075,19 +1070,16 @@ FINSH_FUNCTION_EXPORT_ALIAS(netdev_ping, __cmd_ping, ping network host);
static void netdev_list_dns(void)
{
rt_base_t level;
int index = 0;
struct netdev *netdev = RT_NULL;
rt_slist_t *node = RT_NULL;
level = rt_hw_interrupt_disable();
for (node = &(netdev_list->list); node; node = rt_slist_next(node))
{
netdev = rt_list_entry(node, struct netdev, list);
rt_kprintf("network interface device: %s%s\n",
netdev->name,
rt_kprintf("network interface device: %.*s%s\n",
RT_NAME_MAX, netdev->name,
(netdev == netdev_default)?" (Default)":"");
for(index = 0; index < NETDEV_DNS_SERVERS_NUM; index++)
@ -1100,8 +1092,6 @@ static void netdev_list_dns(void)
rt_kprintf("\n");
}
}
rt_hw_interrupt_enable(level);
}
static void netdev_set_dns(char *netdev_name, uint8_t dns_num, char *dns_server)
@ -1149,7 +1139,6 @@ FINSH_FUNCTION_EXPORT_ALIAS(netdev_dns, __cmd_dns, list and set the information
#ifdef NETDEV_USING_NETSTAT
static void netdev_cmd_netstat(void)
{
rt_base_t level;
rt_slist_t *node = RT_NULL;
struct netdev *netdev = RT_NULL;
struct netdev *cur_netdev_list = netdev_list;
@ -1160,8 +1149,6 @@ static void netdev_cmd_netstat(void)
return;
}
level = rt_hw_interrupt_disable();
for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
{
netdev = rt_list_entry(node, struct netdev, list);
@ -1172,8 +1159,6 @@ static void netdev_cmd_netstat(void)
}
}
rt_hw_interrupt_enable(level);
netdev->ops->netstat(netdev);
}
@ -1193,4 +1178,4 @@ int netdev_netstat(int argc, char **argv)
FINSH_FUNCTION_EXPORT_ALIAS(netdev_netstat, __cmd_netstat, list the information of TCP / IP);
#endif /* NETDEV_USING_NETSTAT */
#endif /* FINSH_USING_MSH */
#endif /* RT_USING_FINSH */