Browse Source

Merge pull request #15379 from jow-/bonding-accept-uci-list

bonding: accept list of slaves in uci list notation
lilik-openwrt-22.03
Florian Eckert 3 years ago
committed by GitHub
parent
commit
920d733876
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 20 deletions
  1. +1
    -1
      net/bonding/Makefile
  2. +24
    -19
      net/bonding/files/lib/netifd/proto/bonding.sh

+ 1
- 1
net/bonding/Makefile View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=proto-bonding
PKG_VERSION:=2020-03-30
PKG_VERSION:=2021-04-09
PKG_RELEASE:=1
PKG_LICENSE:=GPL-2.0


+ 24
- 19
net/bonding/files/lib/netifd/proto/bonding.sh View File

@ -37,7 +37,7 @@ proto_bonding_init_config() {
proto_config_add_string "bonding_policy"
proto_config_add_string "link_monitoring"
proto_config_add_string "slaves"
proto_config_add_array "slaves"
proto_config_add_string "all_slaves_active"
proto_config_add_string "min_links"
@ -66,6 +66,28 @@ proto_bonding_init_config() {
proto_config_add_string "use_carrier"
}
proto_bonding_add_slave() {
local slave=$1
local idx=$2
local cfg=$3
local link=$4
if [ ! -e "/sys/class/net/$slave" ]; then
echo "$cfg" "No slave device $slave found"
proto_notify_error "$cfg" NO_DEVICE
proto_block_restart "$cfg"
return
fi
ip link set dev "$slave" down
sleep 1
echo "+$slave" > /sys/class/net/"$link"/bonding/slaves
ip link set dev "$slave" up
}
proto_bonding_setup() {
local cfg="$1"
local link="bonding-$cfg"
@ -157,24 +179,7 @@ proto_bonding_setup() {
# Add slaves to bonding interface
local slaves
json_get_vars slaves
for slave in $slaves; do
if [ "$(cat /proc/net/dev |grep "$slave")" == "" ]; then
echo "$cfg" "No slave device $slave found"
proto_notify_error "$cfg" NO_DEVICE
proto_block_restart "$cfg"
return
fi
ifconfig "$slave" down
sleep 1
echo "+$slave" > /sys/class/net/"$link"/bonding/slaves
ifconfig "$slave" up
done
json_for_each_item proto_bonding_add_slave slaves "$cfg" "$link"
[ -n "$all_slaves_active" ] && echo "$all_slaves_active" > /sys/class/net/"$link"/bonding/all_slaves_active


Loading…
Cancel
Save