From: Saul Wold <sgw@linux.intel.com>
To: "Iorga, Cristian" <cristian.iorga@intel.com>
Cc: "Musca, ConstantinX" <constantinx.musca@intel.com>,
"openembedded-core@lists.openembedded.org"
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH] connman: upgrade to 1.9
Date: Mon, 10 Dec 2012 08:07:59 -0800 [thread overview]
Message-ID: <50C608DF.7050907@linux.intel.com> (raw)
In-Reply-To: <969F26A8BAB325438E7EB80D3C3134FB161D2CB7@IRSMSX102.ger.corp.intel.com>
On 12/09/2012 11:35 PM, Iorga, Cristian wrote:
> Hi Saul,
>
> Where I can find the sanity tests source code?
> Also, what is the test environment regarding the network?
> Is the qemu machine isolated?
>
The tests them selves are in the scripts/qemuimage-tests/tools dir, you
should review the following wiki page on the sanity tests, you can also
talk with the QA guys.
https://wiki.yoctoproject.org/wiki/Enabling_Automation_Test_in_Poky
I am not exactly sure what you mean by is the qemu machine isolated, it
runs just like any other runqemu command connected to the host machine
via a tap/tun setup.
it starts at the beginning of the sanity tests, and runs the connman
tests after running other tests first. Since connman setups up the
network, the tests need scp and ssh first to send and fire the tests.
Hope this all helps.
Sau!
> I also agree with you that there is a need to investigate this.
> I will deal with it coming Thursday.
>
> Thanks,
> Cristian
>
>
> -----Original Message-----
> From: Saul Wold [mailto:sgw@linux.intel.com]
> Sent: Thursday, December 06, 2012 7:53 PM
> To: Iorga, Cristian
> Cc: openembedded-core@lists.openembedded.org; Musca, ConstantinX
> Subject: Re: [OE-core] [PATCH] connman: upgrade to 1.9
>
> On 12/05/2012 09:43 AM, Cristian Iorga wrote:
>> From: Constantin Musca <constantinx.musca@intel.com>
>>
>> 0002-storage.c-If-there-is-no-d_type-support-use-fstatat.patch
>> - adapted to the new version
>>
>> 0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch
>> - patch removed (it is included in the new version)
>>
>> inet-fix-ip-cleanup-functions.patch: added
>> - fix for ip cleanup functions
>>
> This seemed to introduce some regression on the Autobuilder and caused all Sanity tests to fail, apparently connman is taking longer to start up and longer to aquire an IP address.
>
> This needs to be understood before we merge this change.
>
> Thanks
> Sau!
>
>> Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
>> Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
>> ---
>> ...If-there-is-no-d_type-support-use-fstatat.patch | 61 --------------------
>> ...If-there-is-no-d_type-support-use-fstatat.patch | 38 +++++++-----
>> .../connman/inet-fix-ip-cleanup-functions.patch | 40 +++++++++++++
>> .../connman/{connman_1.4.bb => connman_1.9.bb} | 6 +-
>> 4 files changed, 65 insertions(+), 80 deletions(-)
>> delete mode 100644 meta/recipes-connectivity/connman/connman/0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch
>> create mode 100644 meta/recipes-connectivity/connman/connman/inet-fix-ip-cleanup-functions.patch
>> rename meta/recipes-connectivity/connman/{connman_1.4.bb =>
>> connman_1.9.bb} (72%)
>>
>> diff --git
>> a/meta/recipes-connectivity/connman/connman/0001-timezone.c-If-there-i
>> s-no-d_type-support-use-fstatat.patch
>> b/meta/recipes-connectivity/connman/connman/0001-timezone.c-If-there-i
>> s-no-d_type-support-use-fstatat.patch
>> deleted file mode 100644
>> index 3bced52..0000000
>> ---
>> a/meta/recipes-connectivity/connman/connman/0001-timezone.c-If-there-i
>> s-no-d_type-support-use-fstatat.patch
>> +++ /dev/null
>> @@ -1,61 +0,0 @@
>> -From f2094e6b2e4542adf458d8fa58d7bccd5edb762e Mon Sep 17 00:00:00
>> 2001
>> -From: Andrei Gherzan <andrei@gherzan.ro>
>> -Date: Tue, 17 Jul 2012 17:27:39 +0300
>> -Subject: [PATCH V3 1/2] timezone.c: If there is no d_type support use
>> - fstatat()
>> -
>> -This is useful for filesystems where d_type is always DT_UNKNOWN.
>> -In this case use fstatat() function.
>> -
>> -Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
>> -Upstream-Status: Submitted
>> -
>> ----
>> - src/timezone.c | 24 ++++++++++++++++++++++++
>> - 1 file changed, 24 insertions(+)
>> -
>> -diff --git a/src/timezone.c b/src/timezone.c -index 173d658..f951f6b
>> 100644
>> ---- a/src/timezone.c
>> -+++ b/src/timezone.c
>> -@@ -157,6 +157,8 @@ static char *find_origin(void *src_map, struct stat *src_st,
>> - DIR *dir;
>> - struct dirent *d;
>> - char *str, pathname[PATH_MAX];
>> -+ struct stat buf;
>> -+ int ret;
>> -
>> - if (subpath == NULL)
>> - strncpy(pathname, basepath, sizeof(pathname));
>> -@@ -205,6 +207,28 @@ static char *find_origin(void *src_map, struct stat *src_st,
>> - return str;
>> - }
>> - break;
>> -+ case DT_UNKNOWN:
>> -+ /*
>> -+ * If there is no d_type support use fstatat()
>> -+ * to check if directory
>> -+ */
>> -+ ret = fstatat(dirfd(dir), d->d_name, &buf, 0);
>> -+ if (ret < 0)
>> -+ continue;
>> -+ if (!(buf.st_mode & S_IFDIR))
>> -+ continue;
>> -+ if (subpath == NULL)
>> -+ strncpy(pathname, d->d_name, sizeof(pathname));
>> -+ else
>> -+ snprintf(pathname, sizeof(pathname),
>> -+ "%s/%s", subpath, d->d_name);
>> -+
>> -+ str = find_origin(src_map, src_st, basepath, pathname);
>> -+ if (str != NULL) {
>> -+ closedir(dir);
>> -+ return str;
>> -+ }
>> -+ break;
>> - }
>> - }
>> -
>> ---
>> -1.7.9.5
>> -
>> diff --git
>> a/meta/recipes-connectivity/connman/connman/0002-storage.c-If-there-is
>> -no-d_type-support-use-fstatat.patch
>> b/meta/recipes-connectivity/connman/connman/0002-storage.c-If-there-is
>> -no-d_type-support-use-fstatat.patch
>> index d3205c0..7315545 100644
>> ---
>> a/meta/recipes-connectivity/connman/connman/0002-storage.c-If-there-is
>> -no-d_type-support-use-fstatat.patch
>> +++ b/meta/recipes-connectivity/connman/connman/0002-storage.c-If-ther
>> +++ e-is-no-d_type-support-use-fstatat.patch
>> @@ -8,20 +8,33 @@ This is useful for filesystems where d_type is always DT_UNKNOWN.
>> In this case use fstatat() function.
>>
>> Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
>> +Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
>> Upstream-Status: Submitted
>>
>> ---
>> src/storage.c | 19 +++++++++++++++++++
>> 1 file changed, 19 insertions(+)
>>
>> -diff --git a/src/storage.c b/src/storage.c -index 47bd0cb..0491a52
>> 100644
>> ---- a/src/storage.c
>> -+++ b/src/storage.c
>> -@@ -206,6 +206,25 @@ gchar **connman_storage_get_services()
>> +Index: git/src/storage.c
>> +===================================================================
>> +--- git.orig/src/storage.c
>> ++++ git/src/storage.c
>> +@@ -193,7 +193,6 @@ gchar **connman_storage_get_services()
>>
>> - g_string_append_printf(result, "%s/", d->d_name);
>> - break;
>> + switch (d->d_type) {
>> + case DT_DIR:
>> +- case DT_UNKNOWN:
>> + /*
>> + * If the settings file is not found, then
>> + * assume this directory is not a services dir.
>> +@@ -203,6 +202,25 @@ gchar **connman_storage_get_services()
>> + ret = stat(str, &buf);
>> + g_free(str);
>> + if (ret < 0)
>> ++ continue;
>> ++
>> ++ g_string_append_printf(result, "%s/", d->d_name);
>> ++ break;
>> + case DT_UNKNOWN:
>> + /*
>> + * If there is no d_type support use fstatat()
>> @@ -37,13 +50,6 @@ index 47bd0cb..0491a52 100644
>> + ret = stat(str, &buf);
>> + g_free(str);
>> + if (ret < 0)
>> -+ continue;
>> -+
>> -+ g_string_append_printf(result, "%s/", d->d_name);
>> -+ break;
>> - }
>> - }
>> + continue;
>>
>> ---
>> -1.7.9.5
>> -
>> + g_string_append_printf(result, "%s/", d->d_name);
>> diff --git
>> a/meta/recipes-connectivity/connman/connman/inet-fix-ip-cleanup-functi
>> ons.patch
>> b/meta/recipes-connectivity/connman/connman/inet-fix-ip-cleanup-functi
>> ons.patch
>> new file mode 100644
>> index 0000000..3071549
>> --- /dev/null
>> +++ b/meta/recipes-connectivity/connman/connman/inet-fix-ip-cleanup-fu
>> +++ nctions.patch
>> @@ -0,0 +1,40 @@
>> +From 100353e10f60a50ca1ba78daa6bc4dfebf5b3297 Mon Sep 17 00:00:00
>> +2001
>> +From: Constantin Musca <constantinx.musca@intel.com>
>> +Date: Wed, 5 Dec 2012 15:07:21 +0200
>> +Subject: [PATCH] inet: fix ip cleanup functions
>> +
>> +Upstream-Status: Pending
>> +Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
>> +---
>> + src/inet.c | 8 ++++++++
>> + 1 file changed, 8 insertions(+)
>> +
>> +diff --git a/src/inet.c b/src/inet.c
>> +index be69aca..e76a1f1 100644
>> +--- a/src/inet.c
>> ++++ b/src/inet.c
>> +@@ -626,6 +626,10 @@ int connman_inet_clear_ipv6_address(int index,
>> +const char *address,
>> +
>> + DBG("index %d address %s prefix_len %d", index, address,
>> + prefix_len);
>> +
>> ++ if (address == NULL) {
>> ++ return -1;
>> ++ }
>> ++
>> + err = __connman_inet_modify_address(RTM_DELADDR, 0, index, AF_INET6,
>> + address, NULL, prefix_len, NULL);
>> + if (err < 0) {
>> +@@ -649,6 +653,10 @@ int connman_inet_clear_address(int index, struct
>> +connman_ipaddress *ipaddress)
>> +
>> + DBG("index %d address %s prefix_len %d", index, address,
>> + prefix_len);
>> +
>> ++ if (address == NULL) {
>> ++ return -1;
>> ++ }
>> ++
>> + err = __connman_inet_modify_address(RTM_DELADDR, 0, index, AF_INET,
>> + address, peer, prefix_len, broadcast);
>> + if (err < 0) {
>> +--
>> +1.7.11.7
>> +
>> diff --git a/meta/recipes-connectivity/connman/connman_1.4.bb
>> b/meta/recipes-connectivity/connman/connman_1.9.bb
>> similarity index 72%
>> rename from meta/recipes-connectivity/connman/connman_1.4.bb
>> rename to meta/recipes-connectivity/connman/connman_1.9.bb
>> index bd8ba65..3cbabc6 100644
>> --- a/meta/recipes-connectivity/connman/connman_1.4.bb
>> +++ b/meta/recipes-connectivity/connman/connman_1.9.bb
>> @@ -1,12 +1,12 @@
>> require connman.inc
>>
>> -# 1.4 tag
>> -SRCREV = "f701bbca259f1f35e68d338f31f5373f75f3da5f"
>> +# 1.9 tag
>> +SRCREV = "4bf217329babf4f7792b43d70228af8269c3332c"
>> SRC_URI = "git://git.kernel.org/pub/scm/network/connman/connman.git \
>> file://0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch \
>> file://add_xuser_dbus_permission.patch \
>> file://connman \
>> file://0002-storage.c-If-there-is-no-d_type-support-use-fstatat.patch \
>> - file://0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch"
>> + file://inet-fix-ip-cleanup-functions.patch"
>> S = "${WORKDIR}/git"
>> PR = "${INC_PR}.0"
>>
>
>
prev parent reply other threads:[~2012-12-10 16:22 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-05 17:43 [PATCH] connman: upgrade to 1.9 Cristian Iorga
2012-12-06 17:52 ` Saul Wold
2012-12-10 7:35 ` Iorga, Cristian
2012-12-10 16:07 ` Saul Wold [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50C608DF.7050907@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=constantinx.musca@intel.com \
--cc=cristian.iorga@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox