diff mbox series

man: fix doc, ip link does support "change"

Message ID 20240416013214.3131696-1-chenjiayunju@gmail.com (mailing list archive)
State Accepted
Commit 11543416d9bcdf58c385c635295b074dcdb6bc5a
Delegated to: Stephen Hemminger
Headers show
Series man: fix doc, ip link does support "change" | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

jiayun chen April 16, 2024, 1:32 a.m. UTC
From: Jiayun Chen <jiayunchen@smail.nju.edu.cn>

ip link does support "change".

if (matches(*argv, "set") == 0 ||
    matches(*argv, "change") == 0)
    return iplink_modify(RTM_NEWLINK, 0,
                 argc-1, argv+1);

The attached patch documents this.

Signed-off-by: Jiayun Chen <jiayunchen@smail.nju.edu.cn>
---
 ip/iplink.c           | 2 +-
 man/man8/ip-link.8.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org April 21, 2024, 3:10 a.m. UTC | #1
Hello:

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

On Tue, 16 Apr 2024 09:32:15 +0800 you wrote:
> From: Jiayun Chen <jiayunchen@smail.nju.edu.cn>
> 
> ip link does support "change".
> 
> if (matches(*argv, "set") == 0 ||
>     matches(*argv, "change") == 0)
>     return iplink_modify(RTM_NEWLINK, 0,
>                  argc-1, argv+1);
> 
> [...]

Here is the summary with links:
  - man: fix doc, ip link does support "change"
    https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=11543416d9bc

You are awesome, thank you!
diff mbox series

Patch

diff --git a/ip/iplink.c b/ip/iplink.c
index 95314af5..d5cb9a04 100644
--- a/ip/iplink.c
+++ b/ip/iplink.c
@@ -64,7 +64,7 @@  void iplink_usage(void)
 		"\n"
 		"	ip link delete { DEVICE | dev DEVICE | group DEVGROUP } type TYPE [ ARGS ]\n"
 		"\n"
-		"	ip link set { DEVICE | dev DEVICE | group DEVGROUP }\n"
+		"	ip link { set | change } { DEVICE | dev DEVICE | group DEVGROUP }\n"
 		"			[ { up | down } ]\n"
 		"			[ type TYPE ARGS ]\n");
 
diff --git a/man/man8/ip-link.8.in b/man/man8/ip-link.8.in
index 31e2d7f0..1e4dfcdd 100644
--- a/man/man8/ip-link.8.in
+++ b/man/man8/ip-link.8.in
@@ -63,7 +63,7 @@  ip-link \- network device configuration
 .RI "[ " ARGS " ]"
 
 .ti -8
-.BR "ip link set " {
+.BR "ip link" " { " set " | " change " } " {
 .IR DEVICE " | "
 .BI "group " GROUP
 }