mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-04 18:46:33 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
43 lines
1.0 KiB
Diff
43 lines
1.0 KiB
Diff
From a5b945cb3c62a18dcd7047f62707c09076c4e48b Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Wed, 12 Jul 2017 15:35:51 -0700
|
|
Subject: [PATCH 2/2] teamd: Re-adjust include header order
|
|
|
|
So it gets the library definition before kernel definition
|
|
|
|
usr/include/ne
|
|
tinet/if_ether.h:101:8: error: redefinition of 'struct ethhdr'
|
|
struct ethhdr {
|
|
^~~~~~
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
teamd/teamd_runner_lacp.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/teamd/teamd_runner_lacp.c b/teamd/teamd_runner_lacp.c
|
|
index 9c77fae..8800854 100644
|
|
--- a/teamd/teamd_runner_lacp.c
|
|
+++ b/teamd/teamd_runner_lacp.c
|
|
@@ -23,6 +23,7 @@
|
|
#include <unistd.h>
|
|
#include <limits.h>
|
|
#include <sys/ioctl.h>
|
|
+#include <net/ethernet.h>
|
|
#include <linux/if_ether.h>
|
|
#include <sys/socket.h>
|
|
#include <linux/netdevice.h>
|
|
@@ -30,7 +31,6 @@
|
|
#include <errno.h>
|
|
#include <team.h>
|
|
#include <private/misc.h>
|
|
-#include <net/ethernet.h>
|
|
|
|
#include "teamd.h"
|
|
#include "teamd_config.h"
|
|
--
|
|
2.13.2
|
|
|