diff options
| author | Roy.Li <rongqing.li@windriver.com> | 2013-07-19 17:56:09 +0800 |
|---|---|---|
| committer | Joe MacDonald <joe.macdonald@windriver.com> | 2013-07-19 08:26:55 -0400 |
| commit | 5102691729fe8371fee0fefd55694f122e412ef0 (patch) | |
| tree | f14e5e6eb84daf0ff7e6df21ed4f743b806adf8e /meta-networking/recipes-support | |
| parent | e81ef5153c8679a1fc68e59d0f62f77489daf075 (diff) | |
| download | meta-openembedded-5102691729fe8371fee0fefd55694f122e412ef0.tar.gz | |
bridge-utils: BackPort three patches
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Diffstat (limited to 'meta-networking/recipes-support')
4 files changed, 158 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils.inc b/meta-networking/recipes-support/bridge-utils/bridge-utils.inc index 271fc82139..bd96c6ab90 100644 --- a/meta-networking/recipes-support/bridge-utils/bridge-utils.inc +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils.inc | |||
| @@ -5,7 +5,11 @@ LICENSE = "GPLv2" | |||
| 5 | 5 | ||
| 6 | DEPENDS = "sysfsutils" | 6 | DEPENDS = "sysfsutils" |
| 7 | 7 | ||
| 8 | SRC_URI = "${SOURCEFORGE_MIRROR}/bridge/bridge-utils-${PV}.tar.gz" | 8 | SRC_URI = "${SOURCEFORGE_MIRROR}/bridge/bridge-utils-${PV}.tar.gz \ |
| 9 | file://bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch \ | ||
| 10 | file://bridge-utils-1.5-fix-error-message-for-incorrect-command.patch \ | ||
| 11 | file://bridge-utils-1.5-fix-incorrect-command-in-manual.patch \ | ||
| 12 | " | ||
| 9 | 13 | ||
| 10 | inherit autotools | 14 | inherit autotools |
| 11 | 15 | ||
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch new file mode 100644 index 0000000000..d00af9c159 --- /dev/null +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch | |||
| @@ -0,0 +1,87 @@ | |||
| 1 | Upstream-status: BackPort [http://pkgs.fedoraproject.org/cgit/bridge-utils.git/diff/bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch?id=b0d10717fd7cebf5d85eed3f941b409fa0384f08] | ||
| 2 | |||
| 3 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
| 4 | |||
| 5 | From bb9970a9df95837e39d680021b1f73d231e85406 Mon Sep 17 00:00:00 2001 | ||
| 6 | From: Stephen Hemminger <shemminger@vyatta.com> | ||
| 7 | Date: Tue, 3 May 2011 09:52:43 -0700 | ||
| 8 | Subject: [PATCH 3/3] Check error returns from write to sysfs | ||
| 9 | |||
| 10 | Add helper function to check write to sysfs files. | ||
| 11 | |||
| 12 | Signed-off-by: Petr Sabata <contyk@redhat.com> | ||
| 13 | --- | ||
| 14 | libbridge/libbridge_devif.c | 37 +++++++++++++++++++++++-------------- | ||
| 15 | 1 files changed, 23 insertions(+), 14 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/libbridge/libbridge_devif.c b/libbridge/libbridge_devif.c | ||
| 18 | index aa8bc36..1e83925 100644 | ||
| 19 | --- a/libbridge/libbridge_devif.c | ||
| 20 | +++ b/libbridge/libbridge_devif.c | ||
| 21 | @@ -280,25 +280,38 @@ fallback: | ||
| 22 | return old_get_port_info(brname, port, info); | ||
| 23 | } | ||
| 24 | |||
| 25 | +static int set_sysfs(const char *path, unsigned long value) | ||
| 26 | +{ | ||
| 27 | + int fd, ret = 0, cc; | ||
| 28 | + char buf[32]; | ||
| 29 | + | ||
| 30 | + fd = open(path, O_WRONLY); | ||
| 31 | + if (fd < 0) | ||
| 32 | + return -1; | ||
| 33 | + | ||
| 34 | + cc = snprintf(buf, sizeof(buf), "%lu\n", value); | ||
| 35 | + if (write(fd, buf, cc) < 0) | ||
| 36 | + ret = -1; | ||
| 37 | + close(fd); | ||
| 38 | + | ||
| 39 | + return ret; | ||
| 40 | +} | ||
| 41 | + | ||
| 42 | |||
| 43 | static int br_set(const char *bridge, const char *name, | ||
| 44 | unsigned long value, unsigned long oldcode) | ||
| 45 | { | ||
| 46 | int ret; | ||
| 47 | char path[SYSFS_PATH_MAX]; | ||
| 48 | - FILE *f; | ||
| 49 | |||
| 50 | - snprintf(path, SYSFS_PATH_MAX, SYSFS_CLASS_NET "%s/%s", bridge, name); | ||
| 51 | + snprintf(path, SYSFS_PATH_MAX, SYSFS_CLASS_NET "%s/bridge/%s", | ||
| 52 | + bridge, name); | ||
| 53 | |||
| 54 | - f = fopen(path, "w"); | ||
| 55 | - if (f) { | ||
| 56 | - ret = fprintf(f, "%ld\n", value); | ||
| 57 | - fclose(f); | ||
| 58 | - } else { | ||
| 59 | + if ((ret = set_sysfs(path, value)) < 0) { | ||
| 60 | /* fallback to old ioctl */ | ||
| 61 | struct ifreq ifr; | ||
| 62 | unsigned long args[4] = { oldcode, value, 0, 0 }; | ||
| 63 | - | ||
| 64 | + | ||
| 65 | strncpy(ifr.ifr_name, bridge, IFNAMSIZ); | ||
| 66 | ifr.ifr_data = (char *) &args; | ||
| 67 | ret = ioctl(br_socket_fd, SIOCDEVPRIVATE, &ifr); | ||
| 68 | @@ -348,14 +361,10 @@ static int port_set(const char *bridge, const char *ifname, | ||
| 69 | { | ||
| 70 | int ret; | ||
| 71 | char path[SYSFS_PATH_MAX]; | ||
| 72 | - FILE *f; | ||
| 73 | |||
| 74 | snprintf(path, SYSFS_PATH_MAX, SYSFS_CLASS_NET "%s/brport/%s", ifname, name); | ||
| 75 | - f = fopen(path, "w"); | ||
| 76 | - if (f) { | ||
| 77 | - ret = fprintf(f, "%ld\n", value); | ||
| 78 | - fclose(f); | ||
| 79 | - } else { | ||
| 80 | + | ||
| 81 | + if ((ret = set_sysfs(path, value)) < 0) { | ||
| 82 | int index = get_portno(bridge, ifname); | ||
| 83 | |||
| 84 | if (index < 0) | ||
| 85 | -- | ||
| 86 | 1.7.5.2 | ||
| 87 | |||
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-error-message-for-incorrect-command.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-error-message-for-incorrect-command.patch new file mode 100644 index 0000000000..2d0494e533 --- /dev/null +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-error-message-for-incorrect-command.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | Upstream-status: BackPort [http://pkgs.fedoraproject.org/cgit/bridge-utils.git/diff/bridge-utils-1.5-fix-error-message-for-incorrect-command.patch?id=b0d10717fd7cebf5d85eed3f941b409fa0384f08] | ||
| 2 | |||
| 3 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
| 4 | |||
| 5 | From c7ed0996ef58b497d3d30be802ab5ae6c37099b5 Mon Sep 17 00:00:00 2001 | ||
| 6 | From: Stephen Hemminger <shemminger@vyatta.com> | ||
| 7 | Date: Tue, 3 May 2011 09:49:57 -0700 | ||
| 8 | Subject: [PATCH 2/3] Fix error message for incorrect command | ||
| 9 | |||
| 10 | Debian bug 406907 | ||
| 11 | Error message was refering to incorrect command argument. | ||
| 12 | |||
| 13 | Signed-off-by: Petr Sabata <contyk@redhat.com> | ||
| 14 | --- | ||
| 15 | brctl/brctl.c | 2 +- | ||
| 16 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/brctl/brctl.c b/brctl/brctl.c | ||
| 19 | index 454b8dd..46ca352 100644 | ||
| 20 | --- a/brctl/brctl.c | ||
| 21 | +++ b/brctl/brctl.c | ||
| 22 | @@ -69,7 +69,7 @@ int main(int argc, char *const* argv) | ||
| 23 | argc -= optind; | ||
| 24 | argv += optind; | ||
| 25 | if ((cmd = command_lookup(*argv)) == NULL) { | ||
| 26 | - fprintf(stderr, "never heard of command [%s]\n", argv[1]); | ||
| 27 | + fprintf(stderr, "never heard of command [%s]\n", *argv); | ||
| 28 | goto help; | ||
| 29 | } | ||
| 30 | |||
| 31 | -- | ||
| 32 | 1.7.5.2 | ||
| 33 | |||
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-incorrect-command-in-manual.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-incorrect-command-in-manual.patch new file mode 100644 index 0000000000..6f6d6d4235 --- /dev/null +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/bridge-utils-1.5-fix-incorrect-command-in-manual.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | Upstream-status: BackPort [http://pkgs.fedoraproject.org/cgit/bridge-utils.git/diff/bridge-utils-1.5-fix-incorrect-command-in-manual.patch?id=b0d10717fd7cebf5d85eed3f941b409fa0384f08] | ||
| 2 | |||
| 3 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
| 4 | |||
| 5 | From 8ef7b77562b636efcbd8b759eb324d6c069200f2 Mon Sep 17 00:00:00 2001 | ||
| 6 | From: Stephen Hemminger <shemminger@vyatta.com> | ||
| 7 | Date: Tue, 3 May 2011 09:48:40 -0700 | ||
| 8 | Subject: [PATCH 1/3] Fix incorrect command in manual | ||
| 9 | |||
| 10 | Command is "setageing" not "setageingtime"; fix man page. | ||
| 11 | Debian bug report. | ||
| 12 | |||
| 13 | Signed-off-by: Petr Sabata <contyk@redhat.com> | ||
| 14 | --- | ||
| 15 | doc/brctl.8 | 2 +- | ||
| 16 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/doc/brctl.8 b/doc/brctl.8 | ||
| 19 | index d904047..771f323 100644 | ||
| 20 | --- a/doc/brctl.8 | ||
| 21 | +++ b/doc/brctl.8 | ||
| 22 | @@ -89,7 +89,7 @@ data. Machines can move to other ports, network cards can be replaced | ||
| 23 | .B brctl showmacs <brname> | ||
| 24 | shows a list of learned MAC addresses for this bridge. | ||
| 25 | |||
| 26 | -.B brctl setageingtime <brname> <time> | ||
| 27 | +.B brctl setageing <brname> <time> | ||
| 28 | sets the ethernet (MAC) address ageing time, in seconds. After <time> | ||
| 29 | seconds of not having seen a frame coming from a certain address, the | ||
| 30 | bridge will time out (delete) that address from the Forwarding | ||
| 31 | -- | ||
| 32 | 1.7.5.2 | ||
| 33 | |||
