All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] sanlock: add version 3.6.0
@ 2018-09-08 14:33 Hongxu Jia
  2018-09-08 20:31 ` Khem Raj
  2018-09-09 14:42 ` [meta-oe][PATCH V2] " Hongxu Jia
  0 siblings, 2 replies; 4+ messages in thread
From: Hongxu Jia @ 2018-09-08 14:33 UTC (permalink / raw)
  To: raj.khem; +Cc: openembedded-devel

A shared storage lock manager.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb | 35 +++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb

diff --git a/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
new file mode 100644
index 0000000..e9a5792
--- /dev/null
+++ b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
@@ -0,0 +1,35 @@
+SUMMARY = "A shared storage lock manager"
+DESCRIPTION = "sanlock  is  a lock manager built on shared storage.  Hosts with access \
+to the storage can perform locking.   An  application  running  on  the \
+hosts  is  given  a small amount of space on the shared block device or \
+file, and uses sanlock for its  own  application-specific  synchronization. \
+Internally,  the  sanlock  daemon manages locks using two disk-based \
+lease algorithms: delta leases and paxos leases."
+HOMEPAGE = "https://pagure.io/sanlock"
+SECTION = "utils"
+
+LICENSE = "LGPLv2+ & GPLv2 & GPLv2+"
+LIC_FILES_CHKSUM = "file://README.license;md5=60487bf0bf429d6b5aa72b6d37a0eb22"
+
+SRC_URI = "git://pagure.io/sanlock.git;protocol=http \
+          "
+SRCREV = "90b2ffa77edd46bea007b7bb39bfd4d2db2ff7af"
+S = "${WORKDIR}/git"
+
+DEPENDS = "libaio util-linux"
+
+inherit distutils
+
+do_configure[noexec] = "1"
+
+do_compile_prepend () {
+    oe_runmake -C wdmd CMD_LDFLAGS="${LDFLAGS}" LIB_LDFLAGS="${LDFLAGS}"
+    oe_runmake -C src CMD_LDFLAGS="${LDFLAGS}" LIB_ENTIRE_LDFLAGS="${LDFLAGS}" LIB_CLIENT_LDFLAGS="${LDFLAGS}"
+    cd ${S}/python
+}
+
+do_install_prepend () {
+    oe_runmake -C wdmd DESTDIR=${D} install
+    oe_runmake -C src DESTDIR=${D} install
+    cd ${S}/python
+}
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [meta-oe][PATCH] sanlock: add version 3.6.0
  2018-09-08 14:33 [meta-oe][PATCH] sanlock: add version 3.6.0 Hongxu Jia
@ 2018-09-08 20:31 ` Khem Raj
  2018-09-09  7:21   ` Hongxu Jia
  2018-09-09 14:42 ` [meta-oe][PATCH V2] " Hongxu Jia
  1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2018-09-08 20:31 UTC (permalink / raw)
  To: Hongxu Jia; +Cc: openembeded-devel

fails to build with musl and may be clang

http://errors.yoctoproject.org/Errors/Details/192148/
On Sat, Sep 8, 2018 at 7:34 AM Hongxu Jia <hongxu.jia@windriver.com> wrote:
>
> A shared storage lock manager.
>
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> ---
>  meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb | 35 +++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>  create mode 100644 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
>
> diff --git a/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
> new file mode 100644
> index 0000000..e9a5792
> --- /dev/null
> +++ b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
> @@ -0,0 +1,35 @@
> +SUMMARY = "A shared storage lock manager"
> +DESCRIPTION = "sanlock  is  a lock manager built on shared storage.  Hosts with access \
> +to the storage can perform locking.   An  application  running  on  the \
> +hosts  is  given  a small amount of space on the shared block device or \
> +file, and uses sanlock for its  own  application-specific  synchronization. \
> +Internally,  the  sanlock  daemon manages locks using two disk-based \
> +lease algorithms: delta leases and paxos leases."
> +HOMEPAGE = "https://pagure.io/sanlock"
> +SECTION = "utils"
> +
> +LICENSE = "LGPLv2+ & GPLv2 & GPLv2+"
> +LIC_FILES_CHKSUM = "file://README.license;md5=60487bf0bf429d6b5aa72b6d37a0eb22"
> +
> +SRC_URI = "git://pagure.io/sanlock.git;protocol=http \
> +          "
> +SRCREV = "90b2ffa77edd46bea007b7bb39bfd4d2db2ff7af"
> +S = "${WORKDIR}/git"
> +
> +DEPENDS = "libaio util-linux"
> +
> +inherit distutils
> +
> +do_configure[noexec] = "1"
> +
> +do_compile_prepend () {
> +    oe_runmake -C wdmd CMD_LDFLAGS="${LDFLAGS}" LIB_LDFLAGS="${LDFLAGS}"
> +    oe_runmake -C src CMD_LDFLAGS="${LDFLAGS}" LIB_ENTIRE_LDFLAGS="${LDFLAGS}" LIB_CLIENT_LDFLAGS="${LDFLAGS}"
> +    cd ${S}/python
> +}
> +
> +do_install_prepend () {
> +    oe_runmake -C wdmd DESTDIR=${D} install
> +    oe_runmake -C src DESTDIR=${D} install
> +    cd ${S}/python
> +}
> --
> 2.8.1
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-oe][PATCH] sanlock: add version 3.6.0
  2018-09-08 20:31 ` Khem Raj
@ 2018-09-09  7:21   ` Hongxu Jia
  0 siblings, 0 replies; 4+ messages in thread
From: Hongxu Jia @ 2018-09-09  7:21 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On 2018年09月09日 04:31, Khem Raj wrote:
> fails to build with musl and may be clang
>
> http://errors.yoctoproject.org/Errors/Details/192148/

OK, I will fix it, v2 incoming

//Hongxu


> On Sat, Sep 8, 2018 at 7:34 AM Hongxu Jia <hongxu.jia@windriver.com> wrote:
>> A shared storage lock manager.
>>
>> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
>> ---
>>   meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb | 35 +++++++++++++++++++++++
>>   1 file changed, 35 insertions(+)
>>   create mode 100644 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
>>
>> diff --git a/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
>> new file mode 100644
>> index 0000000..e9a5792
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
>> @@ -0,0 +1,35 @@
>> +SUMMARY = "A shared storage lock manager"
>> +DESCRIPTION = "sanlock  is  a lock manager built on shared storage.  Hosts with access \
>> +to the storage can perform locking.   An  application  running  on  the \
>> +hosts  is  given  a small amount of space on the shared block device or \
>> +file, and uses sanlock for its  own  application-specific  synchronization. \
>> +Internally,  the  sanlock  daemon manages locks using two disk-based \
>> +lease algorithms: delta leases and paxos leases."
>> +HOMEPAGE = "https://pagure.io/sanlock"
>> +SECTION = "utils"
>> +
>> +LICENSE = "LGPLv2+ & GPLv2 & GPLv2+"
>> +LIC_FILES_CHKSUM = "file://README.license;md5=60487bf0bf429d6b5aa72b6d37a0eb22"
>> +
>> +SRC_URI = "git://pagure.io/sanlock.git;protocol=http \
>> +          "
>> +SRCREV = "90b2ffa77edd46bea007b7bb39bfd4d2db2ff7af"
>> +S = "${WORKDIR}/git"
>> +
>> +DEPENDS = "libaio util-linux"
>> +
>> +inherit distutils
>> +
>> +do_configure[noexec] = "1"
>> +
>> +do_compile_prepend () {
>> +    oe_runmake -C wdmd CMD_LDFLAGS="${LDFLAGS}" LIB_LDFLAGS="${LDFLAGS}"
>> +    oe_runmake -C src CMD_LDFLAGS="${LDFLAGS}" LIB_ENTIRE_LDFLAGS="${LDFLAGS}" LIB_CLIENT_LDFLAGS="${LDFLAGS}"
>> +    cd ${S}/python
>> +}
>> +
>> +do_install_prepend () {
>> +    oe_runmake -C wdmd DESTDIR=${D} install
>> +    oe_runmake -C src DESTDIR=${D} install
>> +    cd ${S}/python
>> +}
>> --
>> 2.8.1
>>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [meta-oe][PATCH V2] sanlock: add version 3.6.0
  2018-09-08 14:33 [meta-oe][PATCH] sanlock: add version 3.6.0 Hongxu Jia
  2018-09-08 20:31 ` Khem Raj
@ 2018-09-09 14:42 ` Hongxu Jia
  1 sibling, 0 replies; 4+ messages in thread
From: Hongxu Jia @ 2018-09-09 14:42 UTC (permalink / raw)
  To: raj.khem; +Cc: openembedded-devel

A shared storage lock manager.

- Fix compile failure with musl

- Fix installed-vs-shipped QA issue

- Fix ldflags QA issue

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 .../0001-fix-compile-failure-with-libc-musl.patch  | 80 ++++++++++++++++++++++
 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb  | 36 ++++++++++
 2 files changed, 116 insertions(+)
 create mode 100644 meta-oe/recipes-extended/sanlock/sanlock/0001-fix-compile-failure-with-libc-musl.patch
 create mode 100644 meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb

diff --git a/meta-oe/recipes-extended/sanlock/sanlock/0001-fix-compile-failure-with-libc-musl.patch b/meta-oe/recipes-extended/sanlock/sanlock/0001-fix-compile-failure-with-libc-musl.patch
new file mode 100644
index 0000000..e4bde80
--- /dev/null
+++ b/meta-oe/recipes-extended/sanlock/sanlock/0001-fix-compile-failure-with-libc-musl.patch
@@ -0,0 +1,80 @@
+From c51c2c543f3c78b2a68acc61f786f903f2e0fec8 Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Sun, 9 Sep 2018 07:28:09 -0400
+Subject: [PATCH] fix compile failure with libc musl
+
+The lack of random_r in musl:
+[snip]
+|main.c:1393:7: warning: implicit declaration of function 'random_r';
+did you mean 'random'? [-Wimplicit-function-declaration]
+|  rv = random_r(&rand_data, &val);
+|       ^~~~~~~~
+|       random
+|main.c:1408:30: error: invalid application of 'sizeof' to incomplete
+type 'struct random_data'
+|  memset(&rand_data, 0, sizeof(rand_data));
+[snip]
+
+s/random_r/random/, s/initstate_r/initstate/ and remove `static struct
+random_data rand_data'
+
+Here is the man of `random_r()':
+[snip]
+The random_r() function is like random(3), except that instead of using
+state information maintained in a global variable
+[snip]
+
+So use random without state information is OK.
+
+Upstream-Status: Submitted [sanlock-devel@lists.fedorahosted.org]
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ src/main.c | 12 ++++--------
+ 1 file changed, 4 insertions(+), 8 deletions(-)
+
+diff --git a/src/main.c b/src/main.c
+index f60b4d3..602c400 100644
+--- a/src/main.c
++++ b/src/main.c
+@@ -84,7 +84,6 @@ static char command[COMMAND_MAX];
+ static int cmd_argc;
+ static char **cmd_argv;
+ static struct thread_pool pool;
+-static struct random_data rand_data;
+ static char rand_state[32];
+ static pthread_mutex_t rand_mutex = PTHREAD_MUTEX_INITIALIZER;
+ static const char *run_dir = NULL;
+@@ -1386,16 +1385,15 @@ int get_rand(int a, int b);
+ 
+ int get_rand(int a, int b)
+ {
+-	int32_t val;
+-	int rv;
++	long int rv;
+ 
+ 	pthread_mutex_lock(&rand_mutex);
+-	rv = random_r(&rand_data, &val);
++	rv = random();
+ 	pthread_mutex_unlock(&rand_mutex);
+ 	if (rv < 0)
+ 		return rv;
+ 
+-	return a + (int) (((float)(b - a + 1)) * val / (RAND_MAX+1.0));
++	return a + (int) (((float)(b - a + 1)) * rv / (RAND_MAX+1.0));
+ }
+ 
+ static void setup_host_name(void)
+@@ -1405,9 +1403,7 @@ static void setup_host_name(void)
+ 	uuid_t uu;
+ 
+ 	memset(rand_state, 0, sizeof(rand_state));
+-	memset(&rand_data, 0, sizeof(rand_data));
+-
+-	initstate_r(time(NULL), rand_state, sizeof(rand_state), &rand_data);
++	initstate(time(NULL), rand_state, sizeof(rand_state));
+ 
+ 	/* use host name from command line */
+ 
+-- 
+2.8.1
+
diff --git a/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
new file mode 100644
index 0000000..c51bccc
--- /dev/null
+++ b/meta-oe/recipes-extended/sanlock/sanlock_3.6.0.bb
@@ -0,0 +1,36 @@
+SUMMARY = "A shared storage lock manager"
+DESCRIPTION = "sanlock  is  a lock manager built on shared storage.  Hosts with access \
+to the storage can perform locking.   An  application  running  on  the \
+hosts  is  given  a small amount of space on the shared block device or \
+file, and uses sanlock for its  own  application-specific  synchronization. \
+Internally,  the  sanlock  daemon manages locks using two disk-based \
+lease algorithms: delta leases and paxos leases."
+HOMEPAGE = "https://pagure.io/sanlock"
+SECTION = "utils"
+
+LICENSE = "LGPLv2+ & GPLv2 & GPLv2+"
+LIC_FILES_CHKSUM = "file://README.license;md5=60487bf0bf429d6b5aa72b6d37a0eb22"
+
+SRC_URI = "git://pagure.io/sanlock.git;protocol=http \
+           file://0001-fix-compile-failure-with-libc-musl.patch \
+          "
+SRCREV = "90b2ffa77edd46bea007b7bb39bfd4d2db2ff7af"
+S = "${WORKDIR}/git"
+
+DEPENDS = "libaio util-linux"
+
+inherit distutils
+
+do_configure[noexec] = "1"
+
+do_compile_prepend () {
+    oe_runmake -C wdmd CMD_LDFLAGS="${LDFLAGS}" LIB_LDFLAGS="${LDFLAGS}"
+    oe_runmake -C src CMD_LDFLAGS="${LDFLAGS}" LIB_ENTIRE_LDFLAGS="${LDFLAGS}" LIB_CLIENT_LDFLAGS="${LDFLAGS}"
+    cd ${S}/python
+}
+
+do_install_prepend () {
+    oe_runmake -C wdmd DESTDIR=${D} LIBDIR=${libdir} install
+    oe_runmake -C src DESTDIR=${D} LIBDIR=${libdir} install
+    cd ${S}/python
+}
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-09-09 14:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-08 14:33 [meta-oe][PATCH] sanlock: add version 3.6.0 Hongxu Jia
2018-09-08 20:31 ` Khem Raj
2018-09-09  7:21   ` Hongxu Jia
2018-09-09 14:42 ` [meta-oe][PATCH V2] " Hongxu Jia

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.