diff mbox series

[iproute2] iptuntap: use TUNDEV macro

Message ID 20240220134544.31119-1-dkirjanov@suse.de (mailing list archive)
State Accepted
Commit 533fb3c4bec81ad119470baf5a5454e91d0cc829
Delegated to: David Ahern
Headers show
Series [iproute2] iptuntap: use TUNDEV macro | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Denis Kirjanov Feb. 20, 2024, 1:45 p.m. UTC
the code already has a path to the tan/tap device

Signed-off-by: Denis Kirjanov <dkirjanov@suse.de>
---
 ip/iptuntap.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Feb. 26, 2024, 8:30 p.m. UTC | #1
Hello:

This patch was applied to iproute2/iproute2.git (main)
by Stephen Hemminger <stephen@networkplumber.org>:

On Tue, 20 Feb 2024 08:45:44 -0500 you wrote:
> the code already has a path to the tan/tap device
> 
> Signed-off-by: Denis Kirjanov <dkirjanov@suse.de>
> ---
>  ip/iptuntap.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)

Here is the summary with links:
  - [iproute2] iptuntap: use TUNDEV macro
    https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=533fb3c4bec8

You are awesome, thank you!
diff mbox series

Patch

diff --git a/ip/iptuntap.c b/ip/iptuntap.c
index dbb07580..b7018a6f 100644
--- a/ip/iptuntap.c
+++ b/ip/iptuntap.c
@@ -271,8 +271,7 @@  static void show_processes(const char *name)
 
 	fd_path = globbuf.gl_pathv;
 	while (*fd_path) {
-		const char *dev_net_tun = "/dev/net/tun";
-		const size_t linkbuf_len = strlen(dev_net_tun) + 2;
+		const size_t linkbuf_len = strlen(TUNDEV) + 2;
 		char linkbuf[linkbuf_len], *fdinfo;
 		int pid, fd;
 		FILE *f;
@@ -289,7 +288,7 @@  static void show_processes(const char *name)
 			goto next;
 		}
 		linkbuf[err] = '\0';
-		if (strcmp(dev_net_tun, linkbuf))
+		if (strcmp(TUNDEV, linkbuf))
 			goto next;
 
 		if (asprintf(&fdinfo, "/proc/%d/fdinfo/%d", pid, fd) < 0)