You can subscribe to this list here.
| 2013 |
Jan
|
Feb
|
Mar
(2) |
Apr
(79) |
May
(32) |
Jun
(26) |
Jul
(39) |
Aug
(31) |
Sep
(9) |
Oct
(44) |
Nov
(29) |
Dec
(21) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2014 |
Jan
(12) |
Feb
(56) |
Mar
(50) |
Apr
(27) |
May
(33) |
Jun
(24) |
Jul
(44) |
Aug
(25) |
Sep
(18) |
Oct
(16) |
Nov
(18) |
Dec
(31) |
| 2015 |
Jan
(52) |
Feb
(49) |
Mar
(28) |
Apr
(78) |
May
(109) |
Jun
(18) |
Jul
(31) |
Aug
(25) |
Sep
(12) |
Oct
(73) |
Nov
(13) |
Dec
(13) |
| 2016 |
Jan
(10) |
Feb
(8) |
Mar
(6) |
Apr
(10) |
May
(14) |
Jun
(3) |
Jul
(19) |
Aug
(8) |
Sep
(8) |
Oct
(38) |
Nov
(6) |
Dec
(9) |
| 2017 |
Jan
(8) |
Feb
(3) |
Mar
(33) |
Apr
(7) |
May
(26) |
Jun
(8) |
Jul
(9) |
Aug
(16) |
Sep
(9) |
Oct
(11) |
Nov
(26) |
Dec
(5) |
| 2018 |
Jan
(15) |
Feb
(8) |
Mar
(23) |
Apr
(5) |
May
(2) |
Jun
(1) |
Jul
(7) |
Aug
|
Sep
(1) |
Oct
(8) |
Nov
(7) |
Dec
(5) |
| 2019 |
Jan
(5) |
Feb
(15) |
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(11) |
Oct
(1) |
Nov
|
Dec
(4) |
| 2020 |
Jan
|
Feb
(8) |
Mar
(5) |
Apr
(2) |
May
(28) |
Jun
(14) |
Jul
(14) |
Aug
(4) |
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
| 2021 |
Jan
(4) |
Feb
(7) |
Mar
(12) |
Apr
(2) |
May
|
Jun
(8) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(4) |
| 2022 |
Jan
(5) |
Feb
(9) |
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2023 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2024 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2025 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
(4) |
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2026 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Nagendra K. <nag...@ge...> - 2026-03-18 10:47:49
|
Hi Liu, I think, you should create a ticket and float the fix for review. Best regards, Nagendra Kumar, High Availability Solutions https://GetHighAvailability.com/ -----Original Message----- From: Yiding Liu (Fujitsu) via Opensaf-users <ope...@li...> Sent: 18 March 2026 14:09 To: ope...@li... Cc: ope...@li... Subject: [users] Build error with glibc 2.43 Hi All I have tried to build opensaf_5.26.02 with glibc 2.43, but it shows following error: opensaf/src/osaf/immutil/immutil.c:339:12: error: assignment discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers] | 339 | cp = strstr(buffer, key); And I tried to fix it with this patch --- src/amf/common/util.c | 8 ++++---- src/ckpt/ckptd/cpd_imm.c | 4 ++-- src/osaf/immutil/immutil.c | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/amf/common/util.c b/src/amf/common/util.c index d17b766..56c1a50 100644 --- a/src/amf/common/util.c +++ b/src/amf/common/util.c @@ -252,8 +252,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn, const char *needle, const char *parent) { - char *p; - char *pp; + const char *p; + const char *pp; int i = 0; osaf_extended_name_clear(dn); @@ -270,8 +270,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn, /* copy the value upto parent but skip escape chars */ int size = 0; - char *p1 = p; - char *pp1 = pp; + const char *p1 = p; + const char *pp1 = pp; while (p != pp) { if (*p != '\\') size++; diff --git a/src/ckpt/ckptd/cpd_imm.c b/src/ckpt/ckptd/cpd_imm.c index e2dee0c..7c25d02 100644 --- a/src/ckpt/ckptd/cpd_imm.c +++ b/src/ckpt/ckptd/cpd_imm.c @@ -117,7 +117,7 @@ cpd_saImmOiRtAttrUpdateCallback(SaImmOiHandleT immOiHandle, /* Extract ckpt_name and node_name */ if (strncmp(object_name, "safReplica=", 11) == 0) { /* Extract ckpt_name */ - char *p_char = strchr(object_name, ','); + const char *p_char = strchr(object_name, ','); if (p_char) { p_char++; /* escaping first ',' of the associated class DN name */ @@ -657,7 +657,7 @@ SaAisErrorT create_runtime_ckpt_object(CPD_CKPT_INFO_NODE *ckpt_node, SaNameT parentName; SaAisErrorT rc = SA_AIS_OK; char *dndup = strdup(ckpt_node->ckpt_name); - char *parent_name = strchr(ckpt_node->ckpt_name, ','); + const char *parent_name = strchr(ckpt_node->ckpt_name, ','); char *rdnstr; const SaImmAttrValuesT_2 *attrValues[7]; SaImmAttrValueT dn[1], create_time[1], creat_flags[1], max_sections[1], diff --git a/src/osaf/immutil/immutil.c b/src/osaf/immutil/immutil.c index 1ca1fbb..d3a5b63 100644 --- a/src/osaf/immutil/immutil.c +++ b/src/osaf/immutil/immutil.c @@ -336,7 +336,7 @@ char const *immutil_getStringValue(char const *key, SaNameT const *name) klen = strlen(key); assert(klen > 1 || key[klen - 1] == '='); - cp = strstr(buffer, key); + cp = (char*)strstr(buffer, key); while (cp != NULL) { if (cp == buffer || cp[-1] == ',') { char *value = cp + klen; -- 2.43.0 Does anyone meet the same issue and have tried to fix it? Liu _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users |
|
From: Thang N. <tha...@en...> - 2026-03-18 10:14:13
|
Hi Yiding, About the error you meet, it is due to newer glibc + GCC enforce const-correctness more strictly. I did not see this issue yet. You can open a ticket on OpenSAF / Tickets<https://sourceforge.net/p/opensaf/tickets/> to report the issue. It will be fixed later. You can use your temporary patch/work around to pass it. B.R/Thang ________________________________ From: Yiding Liu (Fujitsu) via Opensaf-tickets <ope...@li...> Sent: Wednesday, March 18, 2026 3:38 PM To: ope...@li... <ope...@li...> Cc: ope...@li... <ope...@li...> Subject: [tickets] Build error with glibc 2.43 CAUTION - EXTERNAL EMAIL Hi All I have tried to build opensaf_5.26.02 with glibc 2.43, but it shows following error: opensaf/src/osaf/immutil/immutil.c:339:12: error: assignment discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers] | 339 | cp = strstr(buffer, key); And I tried to fix it with this patch --- src/amf/common/util.c | 8 ++++---- src/ckpt/ckptd/cpd_imm.c | 4 ++-- src/osaf/immutil/immutil.c | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/amf/common/util.c b/src/amf/common/util.c index d17b766..56c1a50 100644 --- a/src/amf/common/util.c +++ b/src/amf/common/util.c @@ -252,8 +252,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn, const char *needle, const char *parent) { - char *p; - char *pp; + const char *p; + const char *pp; int i = 0; osaf_extended_name_clear(dn); @@ -270,8 +270,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn, /* copy the value upto parent but skip escape chars */ int size = 0; - char *p1 = p; - char *pp1 = pp; + const char *p1 = p; + const char *pp1 = pp; while (p != pp) { if (*p != '\\') size++; diff --git a/src/ckpt/ckptd/cpd_imm.c b/src/ckpt/ckptd/cpd_imm.c index e2dee0c..7c25d02 100644 --- a/src/ckpt/ckptd/cpd_imm.c +++ b/src/ckpt/ckptd/cpd_imm.c @@ -117,7 +117,7 @@ cpd_saImmOiRtAttrUpdateCallback(SaImmOiHandleT immOiHandle, /* Extract ckpt_name and node_name */ if (strncmp(object_name, "safReplica=", 11) == 0) { /* Extract ckpt_name */ - char *p_char = strchr(object_name, ','); + const char *p_char = strchr(object_name, ','); if (p_char) { p_char++; /* escaping first ',' of the associated class DN name */ @@ -657,7 +657,7 @@ SaAisErrorT create_runtime_ckpt_object(CPD_CKPT_INFO_NODE *ckpt_node, SaNameT parentName; SaAisErrorT rc = SA_AIS_OK; char *dndup = strdup(ckpt_node->ckpt_name); - char *parent_name = strchr(ckpt_node->ckpt_name, ','); + const char *parent_name = strchr(ckpt_node->ckpt_name, ','); char *rdnstr; const SaImmAttrValuesT_2 *attrValues[7]; SaImmAttrValueT dn[1], create_time[1], creat_flags[1], max_sections[1], diff --git a/src/osaf/immutil/immutil.c b/src/osaf/immutil/immutil.c index 1ca1fbb..d3a5b63 100644 --- a/src/osaf/immutil/immutil.c +++ b/src/osaf/immutil/immutil.c @@ -336,7 +336,7 @@ char const *immutil_getStringValue(char const *key, SaNameT const *name) klen = strlen(key); assert(klen > 1 || key[klen - 1] == '='); - cp = strstr(buffer, key); + cp = (char*)strstr(buffer, key); while (cp != NULL) { if (cp == buffer || cp[-1] == ',') { char *value = cp + klen; -- 2.43.0 Does anyone meet the same issue and have tried to fix it? Liu The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: Yiding L. (Fujitsu) <liu...@fu...> - 2026-03-18 08:55:28
|
Hi All
I have tried to build opensaf_5.26.02 with glibc 2.43, but it shows following error:
opensaf/src/osaf/immutil/immutil.c:339:12: error: assignment discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers]
| 339 | cp = strstr(buffer, key);
And I tried to fix it with this patch
---
src/amf/common/util.c | 8 ++++----
src/ckpt/ckptd/cpd_imm.c | 4 ++--
src/osaf/immutil/immutil.c | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/amf/common/util.c b/src/amf/common/util.c
index d17b766..56c1a50 100644
--- a/src/amf/common/util.c
+++ b/src/amf/common/util.c
@@ -252,8 +252,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn,
const char *needle,
const char *parent)
{
- char *p;
- char *pp;
+ const char *p;
+ const char *pp;
int i = 0;
osaf_extended_name_clear(dn);
@@ -270,8 +270,8 @@ void avsv_sanamet_init_from_association_dn(const SaNameT *haystack, SaNameT *dn,
/* copy the value upto parent but skip escape chars */
int size = 0;
- char *p1 = p;
- char *pp1 = pp;
+ const char *p1 = p;
+ const char *pp1 = pp;
while (p != pp) {
if (*p != '\\')
size++;
diff --git a/src/ckpt/ckptd/cpd_imm.c b/src/ckpt/ckptd/cpd_imm.c
index e2dee0c..7c25d02 100644
--- a/src/ckpt/ckptd/cpd_imm.c
+++ b/src/ckpt/ckptd/cpd_imm.c
@@ -117,7 +117,7 @@ cpd_saImmOiRtAttrUpdateCallback(SaImmOiHandleT immOiHandle,
/* Extract ckpt_name and node_name */
if (strncmp(object_name, "safReplica=", 11) == 0) {
/* Extract ckpt_name */
- char *p_char = strchr(object_name, ',');
+ const char *p_char = strchr(object_name, ',');
if (p_char) {
p_char++; /* escaping first ',' of the associated class
DN name */
@@ -657,7 +657,7 @@ SaAisErrorT create_runtime_ckpt_object(CPD_CKPT_INFO_NODE *ckpt_node,
SaNameT parentName;
SaAisErrorT rc = SA_AIS_OK;
char *dndup = strdup(ckpt_node->ckpt_name);
- char *parent_name = strchr(ckpt_node->ckpt_name, ',');
+ const char *parent_name = strchr(ckpt_node->ckpt_name, ',');
char *rdnstr;
const SaImmAttrValuesT_2 *attrValues[7];
SaImmAttrValueT dn[1], create_time[1], creat_flags[1], max_sections[1],
diff --git a/src/osaf/immutil/immutil.c b/src/osaf/immutil/immutil.c
index 1ca1fbb..d3a5b63 100644
--- a/src/osaf/immutil/immutil.c
+++ b/src/osaf/immutil/immutil.c
@@ -336,7 +336,7 @@ char const *immutil_getStringValue(char const *key, SaNameT const *name)
klen = strlen(key);
assert(klen > 1 || key[klen - 1] == '=');
- cp = strstr(buffer, key);
+ cp = (char*)strstr(buffer, key);
while (cp != NULL) {
if (cp == buffer || cp[-1] == ',') {
char *value = cp + klen;
--
2.43.0
Does anyone meet the same issue and have tried to fix it?
Liu
|
|
From: Anders W. <and...@er...> - 2025-09-11 21:12:21
|
Hi! I have uploaded SAI-AIS-IMM-A.03.01.AL in pdf format on the site now: https://opensaf.sourceforge.io/SAI-AIS-IMM-A.03.01.AL.pdf regards, Anders Widell |
|
From: Keiner, W. B C. (USA) <wil...@ma...> - 2025-09-11 18:12:12
|
Thank you for your help and your quick response! R, Will Keiner, CISSP DISA EM5 Contractor The Gemini 3 Group, Inc. 50 Tech Parkway Suite 107 Stafford, VA 22556 Teams Phone: (540) 876-3358 wk...@ge...<mailto:wk...@ge...> wil...@ma...<mailto:wil...@ma...> “This communication may contain information that is privileged or confidential. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate any part of this message.” ________________________________ From: Anders Widell <and...@er...> Sent: Thursday, September 11, 2025 1:40 PM To: ope...@li... <ope...@li...>; Keiner, William B CTR (USA) <wil...@ma...> Cc: Paprota, Steven J CIV DISA EM (USA) <ste...@ma...> Subject: Re: [users] SAI-AIS-IMM-A.03.01 Documentation Location Hi! I have uploaded SAI-AIS-IMM-A.03.01.AL in pdf format on the site now: https://usg01.safelinks.protection.office365.us/?url=https%3A%2F%2Fopensaf.sourceforge.io%2FSAI-AIS-IMM-A.03.01.AL.pdf&data=05%7C02%7Cwilliam.b.keiner2.ctr%40mail.mil%7Cb63116ae8f104298c90e08ddf15a6533%7C102d0191eeae4761b1cb1a83e86ef445%7C0%7C0%7C638932094356050700%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=rde8KWOt7jvo0wKiLFoV63%2Beb7KB2ZzDYCUh%2FOJyKlI%3D&reserved=0<https://opensaf.sourceforge.io/SAI-AIS-IMM-A.03.01.AL.pdf> regards, Anders Widell |
|
From: Keiner, W. B C. (USA) <wil...@ma...> - 2025-09-11 15:05:33
|
Good Morning, I support DISA and the JESC Secretariat with reviews of change requests for IT Standards in the Department of Defense Information Technology Standards Registry (DISR). I am currently reviewing a change request for SAI-AIS-IMM-A.03.01 but I am unable to find documentation for it on your site, https://opensaf.sourceforge.io/documentation.html. I noticed that other documents reference 3.01 but the only IMM document on the site is for SAI-AIS-IMM-A.02.01. Is there a publicly accessible website that 3.01 is located? Any assistance will be greatly appreciated. R, Will Keiner, CISSP DISA EM5 Contractor The Gemini 3 Group, Inc. 50 Tech Parkway Suite 107 Stafford, VA 22556 Teams Phone: (540) 876-3358 wk...@ge...<mailto:wk...@ge...> wil...@ma...<mailto:wil...@ma...> “This communication may contain information that is privileged or confidential. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate any part of this message.” |
|
From: <tim...@lm...> - 2025-07-01 15:42:37
|
Mohan, Thanks for that insight! We must have something mislabeled then on our side. -Tim -----Original Message----- From: Mohan Kanakam <mo...@Ge...> Sent: Tuesday, July 1, 2025 11:14 AM To: Gordon, Timothy J (US) <tim...@lm...>; ope...@li... Cc: nag...@ge... Subject: EXTERNAL: RE: [users] OpenSAF 3.0.3 and 3.0.4 Hi Tim, Thanks for your question. In my understanding, OpenSAF 3.0.3 and 3.0.4 have not been released. Did you mean 3.0.B3/B4 or 3.0.M3/M4 ? The earlier releases are as below for your reference: Code Tags 3.0.0 3.0.B1 3.0.B1.1 3.0.B2 3.0.B3 3.0.B4 3.0.FC 3.0.GA 3.0.M3 3.0.M4 3.0.RC1 Thanks & Regards Mohan Kanakam Senior Software Engineer High Availability Solutions www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-529 -----Original Message----- From: tim...@lm... [mailto:tim...@lm...] Sent: 01 July 2025 03:21 To: ope...@li... Subject: [users] OpenSAF 3.0.3 and 3.0.4 Hi all, Is there a copy of 3.0.3 and 3.0.4 source available officially anywhere? Upgrading is not an option for one application. Thank you, Tim Gordon _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users |
|
From: Mohan K. <mo...@Ge...> - 2025-07-01 15:33:33
|
Hi Tim, Thanks for your question. In my understanding, OpenSAF 3.0.3 and 3.0.4 have not been released. Did you mean 3.0.B3/B4 or 3.0.M3/M4 ? The earlier releases are as below for your reference: Code Tags 3.0.0 3.0.B1 3.0.B1.1 3.0.B2 3.0.B3 3.0.B4 3.0.FC 3.0.GA 3.0.M3 3.0.M4 3.0.RC1 Thanks & Regards Mohan Kanakam Senior Software Engineer High Availability Solutions www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-529 -----Original Message----- From: tim...@lm... [mailto:tim...@lm...] Sent: 01 July 2025 03:21 To: ope...@li... Subject: [users] OpenSAF 3.0.3 and 3.0.4 Hi all, Is there a copy of 3.0.3 and 3.0.4 source available officially anywhere? Upgrading is not an option for one application. Thank you, Tim Gordon _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users |
|
From: Gary L. <Gar...@en...> - 2025-07-01 01:52:27
|
Hi Timothy This is before my time in opensaf, but you can find the older releases in mercurial: https://sourceforge.net/p/opensaf/staging/ref/default/tags/ Regards Gary ________________________________ From: tim...@lm... <tim...@lm...> Sent: Tuesday, July 1, 2025 8:31 am To: ope...@li... <ope...@li...> Subject: [users] OpenSAF 3.0.3 and 3.0.4 CAUTION - EXTERNAL EMAIL Hi all, Is there a copy of 3.0.3 and 3.0.4 source available officially anywhere? Upgrading is not an option for one application. Thank you, Tim Gordon _______________________________________________ Opensaf-users mailing list Ope...@li... https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Fopensaf-users&data=05%7C02%7Cgary.lee%40dektech.com.au%7Cdb95b326ccf044acbcd908ddb825c1c2%7C0b3fc178b7304e8b9843e81259237b77%7C0%7C0%7C638869194615197786%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C40000%7C%7C%7C&sdata=Xt7d2%2B8Xr6qPXxfryVfAAzVWvnFslJkWbBflPK%2BkIS0%3D&reserved=0<https://lists.sourceforge.net/lists/listinfo/opensaf-users> The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: Gary L. <Gar...@en...> - 2025-07-01 01:36:42
|
Hi Timothy This is before my time in opensaf, but you can find the older releases in mercurial: https://sourceforge.net/p/opensaf/staging/ref/default/tags/ Regards Gary -----Original Message----- From: tim...@lm... <tim...@lm...> Sent: Tuesday, July 1, 2025 7:51 AM To: ope...@li... Subject: [users] OpenSAF 3.0.3 and 3.0.4 CAUTION - EXTERNAL EMAIL Hi all, Is there a copy of 3.0.3 and 3.0.4 source available officially anywhere? Upgrading is not an option for one application. Thank you, Tim Gordon _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: <tim...@lm...> - 2025-06-30 22:30:33
|
Hi all, Is there a copy of 3.0.3 and 3.0.4 source available officially anywhere? Upgrading is not an option for one application. Thank you, Tim Gordon |
|
From: Gary L. <Gar...@en...> - 2025-04-26 08:59:35
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.25.04 release. The source code for OpenSAF 5.25.04 and the corresponding documentation can be downloaded using the following links: opensaf-5.25.04.tar.gz<http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.25.04.tar.gz/download>, opensaf-documentation-5.25.04.tar.gz<http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.25.04.tar.gz/download>. For a complete list of new features in this release, please refer to the NEWS<https://sourceforge.net/p/opensaf/wiki/NEWS-5.25.04/> at the wiki. See the ChangeLog<https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.25.04/> for a full list of changes in this release. The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: <jam...@lm...> - 2024-11-22 16:35:19
|
Hi all, We are utilizing OpenSAF 5.22, in a RHEL8 environment. We have recently been experiencing an issue with one of our processes, showing the following behavior: 1. The process initializes normally 2. It starts Health Checks 3. It remains up in a nominal state, periodically calling saAmfHealthcheckConfirm() to report good health 4. At some point, the Confirm() returns SA_AIS_ERR_NOT_EXIST Questions: 1. What would cause this error to be returned, for a process that is up and running, with no obvious issues? 2. What recourse does a user of this API have, when getting this response? 3. Any other recommendations or suggestions? Thanks. Jim |
|
From: Hoyt, D. <DH...@rb...> - 2024-07-16 13:23:15
|
Ok, thanks for the suggestion Thang! Regards, David From: Thang Nguyen <tha...@en...> Sent: Tuesday, July 16, 2024 2:16 AM To: Hoyt, David <DH...@rb...> Cc: ope...@li... Subject: [EXTERNAL] RE: Question about saAmfSGCompRestartMax and saAmfSGCompRestartProb Hi David, >From my understanding there is no way. But I think you can consider to change "saAmfCompRecoveryOnError" at component level for recovery action. Thang D Nguyen -----Original Message----- From: Hoyt, David <DH...@rb...<mailto:DH...@rb...>> Sent: Thursday, July 11, 2024 9:41 PM To: ope...@li...<mailto:ope...@li...> Cc: Hoyt, David <DH...@rb...<mailto:DH...@rb...>> Subject: [users] Question about saAmfSGCompRestartMax and saAmfSGCompRestartProb CAUTION - EXTERNAL EMAIL Hi all, I know the saAmfSGCompRestartMax and saAmfSGCompRestartProb are parameters that can be set for a SG. Is there any way for a specific component to override these values just for itself? For example, I have a SU with 3 components. One of these components is not as critical and I would like it to have a different restart max & restart prob value than the other two. Is this possible and if so, how? Setup: 2 nodes: SC-1,SC-2 Running opensaf-5.19.10 Virtualization: kvm Operating System: Red Hat Enterprise Linux Server 7.8 (Maipo) Kernel: Linux 3.10.0-1127.el7.x86_64 Architecture: x86-64 Regards, David Disclaimer This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. _______________________________________________ Opensaf-users mailing list Ope...@li...<mailto:Ope...@li...> https://lists.sourceforge.net/lists/listinfo/opensaf-users<https://lists.sourceforge.net/lists/listinfo/opensaf-users> The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: Thang N. <tha...@en...> - 2024-07-16 06:15:40
|
Hi David, >From my understanding there is no way. But I think you can consider to change "saAmfCompRecoveryOnError" at component level for recovery action. Thang D Nguyen -----Original Message----- From: Hoyt, David <DH...@rb...> Sent: Thursday, July 11, 2024 9:41 PM To: ope...@li... Cc: Hoyt, David <DH...@rb...> Subject: [users] Question about saAmfSGCompRestartMax and saAmfSGCompRestartProb CAUTION - EXTERNAL EMAIL Hi all, I know the saAmfSGCompRestartMax and saAmfSGCompRestartProb are parameters that can be set for a SG. Is there any way for a specific component to override these values just for itself? For example, I have a SU with 3 components. One of these components is not as critical and I would like it to have a different restart max & restart prob value than the other two. Is this possible and if so, how? Setup: 2 nodes: SC-1,SC-2 Running opensaf-5.19.10 Virtualization: kvm Operating System: Red Hat Enterprise Linux Server 7.8 (Maipo) Kernel: Linux 3.10.0-1127.el7.x86_64 Architecture: x86-64 Regards, David Disclaimer This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Any opinions expressed are mine and do not necessarily represent the opinions of the Company. Emails are susceptible to interference. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful. If you have received this message in error, do not open any attachments but please notify the Endava Service Desk on (+44 (0)870 423 0187), and delete this message from your system. The sender accepts no responsibility for information, errors or omissions in this email, or for its use or misuse, or for any act committed or omitted in connection with this communication. If in doubt, please verify the authenticity of the contents with the sender. Please rely on your own virus checkers as no responsibility is taken by the sender for any damage rising out of any bug or virus infection. Endava plc is a company registered in England under company number 5722669 whose registered office is at 125 Old Broad Street, London, EC2N 1AR, United Kingdom. Endava plc is the Endava group holding company and does not provide any services to clients. Each of Endava plc and its subsidiaries is a separate legal entity and has no liability for another such entity's acts or omissions. |
|
From: Hoyt, D. <DH...@rb...> - 2024-07-11 14:57:12
|
Hi all, I know the saAmfSGCompRestartMax and saAmfSGCompRestartProb are parameters that can be set for a SG. Is there any way for a specific component to override these values just for itself? For example, I have a SU with 3 components. One of these components is not as critical and I would like it to have a different restart max & restart prob value than the other two. Is this possible and if so, how? Setup: 2 nodes: SC-1,SC-2 Running opensaf-5.19.10 Virtualization: kvm Operating System: Red Hat Enterprise Linux Server 7.8 (Maipo) Kernel: Linux 3.10.0-1127.el7.x86_64 Architecture: x86-64 Regards, David Disclaimer This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. |
|
From: Gary L. <gar...@de...> - 2024-02-28 09:35:46
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.24.02 release. The source code for OpenSAF 5.24.02 and the corresponding documentation can be downloaded using the following links: [opensaf-5.24.02.tar.gz](http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.24.02.tar.gz/download), [opensaf-documentation-5.24.02.tar.gz](http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.24.02.tar.gz/download). For a complete list of new features in this release, please refer to the [NEWS](https://sourceforge.net/p/opensaf/wiki/NEWS-5.24.02/) at the wiki. See the [ChangeLog](https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.24.02/) for a full list of changes in this release. |
|
From: Gary L. <gar...@de...> - 2023-07-30 06:55:39
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.23.07 release. The source code for OpenSAF 5.23.07 and the corresponding documentation can be downloaded using the following links: http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.23.07.tar.g z/download http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.2 3.07.tar.gz/download For a complete list of new features in this release, please refer to the NEWS at the wiki: https://sourceforge.net/p/opensaf/wiki/NEWS-5.23.07/ See the ChangeLog for a full list of changes in this release: https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.23.07/ Thank you for your continued interest in OpenSAF and to everyone who has contributed to this release. |
|
From: Gary L. <gar...@de...> - 2023-03-28 00:35:43
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.23.03 release. The source code for OpenSAF 5.23.03 and the corresponding documentation can be downloaded using the following links: http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.23.03.tar.g z/download http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.2 3.03.tar.gz/download For a complete list of new features in this release, please refer to the NEWS at the wiki: https://sourceforge.net/p/opensaf/wiki/NEWS-5.23.03/ See the ChangeLog for a full list of changes in this release: https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.23.03/ Thank you for your continued interest in OpenSAF and to everyone who has contributed to this release. |
|
From: Gary L. <gar...@de...> - 2022-11-18 05:42:03
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.22.11 release. The source code for OpenSAF 5.22.11 and the corresponding documentation can be downloaded using the following links: http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.22.11.tar.g z/download http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.2 2.11.tar.gz/download For a complete list of new features in this release, please refer to the NEWS at the wiki: https://sourceforge.net/p/opensaf/wiki/NEWS-5.22.11/ See the ChangeLog for a full list of changes in this release: https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.22.11/ Thank you for your continued interest in OpenSAF and to everyone who has contributed to this release. |
|
From: Mohan K. <mo...@Ge...> - 2022-07-26 23:38:58
|
Hi Prince, Yes, it should work. Thanks & Regards, Mohan Kanakam, +91-8333082448, Senior Software Engineer "Book a demo for our brand new product KubeHA, more information at https://GetHighAvailability.com/product/kubeha " co...@Ge... High Availability Solutions www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-5293 -----Original Message----- From: Philip, Prince [mailto:pp...@rb...] Sent: 26 July 2022 16:45 To: Mohan Kanakam; ope...@li... Subject: RE: [EXTERNAL] RE: [users] OpenSAF AMF does support container versioncontainer version? Thank you Mohan. Below is my requirement. Currently we use AMF in a non-container env where one use case is to detect any process failure in the system and we take some corrective actions. (also we use for HA etc). Now when we move to container environment, each of these processes will become independent containers, but all inside one POD (yes, for the time being, all in one POD). But I wanted to know whether the AMF in containerized form can detect failure of these processes each one inside different containers? thanks, Prince -----Original Message----- From: Mohan Kanakam <mo...@Ge...> Sent: Tuesday, July 26, 2022 4:33 PM To: Philip, Prince <pp...@rb...>; ope...@li... Subject: [EXTERNAL] RE: [users] OpenSAF AMF does support container versioncontainer version? Hi Prince, Sorry, I didn't get your question. OpenSAF supports container-contained feature of AMF and you can also containerize OpenSAF. Thanks & Regards, Mohan Kanakam | 91-8333082448, Senior Software Engineer "Book a demo for our brand new product KubeHA, more information at https://clicktime.symantec.com/15siF8gYVgpaQhJkfUfPy?h=b1miLrBSu7pXiR0pZOY_u YL5T1cMQCPwKd8JfCguSno=&u=https://GetHighAvailability.com/product/kubeha " co...@Ge... High Availability Solutions https://clicktime.symantec.com/15siQo57QvBmEaxbkbThD?h=pz7a2Zz_YcoK04ppNKTl_ WbudovJ_m0BFn0QimfgA2s=&u=www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-5293 -----Original Message----- From: Philip, Prince [mailto:pp...@rb...] Sent: 26 July 2022 09:33 To: ope...@li... Subject: [users] OpenSAF AMF does support container version Hi Does OpenSAF AMF support container version? thanks, Prince Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. _______________________________________________ Opensaf-users mailing list Ope...@li... https://clicktime.symantec.com/15siKxspxJWApe8gD34Yb?h=dbSISdE6gCDfnW0-068hD KoT34xnNHU_E6eG22EWZ9w=&u=https://lists.sourceforge.net/lists/listinfo/opens af-users Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. |
|
From: Mohan K. <mo...@Ge...> - 2022-07-26 11:23:07
|
Hi Prince, Sorry, I didn't get your question. OpenSAF supports container-contained feature of AMF and you can also containerize OpenSAF. Thanks & Regards, Mohan Kanakam | 91-8333082448, Senior Software Engineer "Book a demo for our brand new product KubeHA, more information at https://GetHighAvailability.com/product/kubeha " co...@Ge... High Availability Solutions www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-5293 -----Original Message----- From: Philip, Prince [mailto:pp...@rb...] Sent: 26 July 2022 09:33 To: ope...@li... Subject: [users] OpenSAF AMF does support container version Hi Does OpenSAF AMF support container version? thanks, Prince Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. _______________________________________________ Opensaf-users mailing list Ope...@li... https://lists.sourceforge.net/lists/listinfo/opensaf-users |
|
From: Philip, P. <pp...@rb...> - 2022-07-26 11:15:50
|
Thank you Mohan. Below is my requirement. Currently we use AMF in a non-container env where one use case is to detect any process failure in the system and we take some corrective actions. (also we use for HA etc). Now when we move to container environment, each of these processes will become independent containers, but all inside one POD (yes, for the time being, all in one POD). But I wanted to know whether the AMF in containerized form can detect failure of these processes each one inside different containers? thanks, Prince -----Original Message----- From: Mohan Kanakam <mo...@Ge...> Sent: Tuesday, July 26, 2022 4:33 PM To: Philip, Prince <pp...@rb...>; ope...@li... Subject: [EXTERNAL] RE: [users] OpenSAF AMF does support container versioncontainer version? Hi Prince, Sorry, I didn't get your question. OpenSAF supports container-contained feature of AMF and you can also containerize OpenSAF. Thanks & Regards, Mohan Kanakam | 91-8333082448, Senior Software Engineer "Book a demo for our brand new product KubeHA, more information at https://clicktime.symantec.com/15siF8gYVgpaQhJkfUfPy?h=b1miLrBSu7pXiR0pZOY_uYL5T1cMQCPwKd8JfCguSno=&u=https://GetHighAvailability.com/product/kubeha " co...@Ge... High Availability Solutions https://clicktime.symantec.com/15siQo57QvBmEaxbkbThD?h=pz7a2Zz_YcoK04ppNKTl_WbudovJ_m0BFn0QimfgA2s=&u=www.GetHighAvailability.com Get High Availability Today ! NJ, USA: 1 508-507-6507 | Hyderabad, India: 91 798-992-5293 -----Original Message----- From: Philip, Prince [mailto:pp...@rb...] Sent: 26 July 2022 09:33 To: ope...@li... Subject: [users] OpenSAF AMF does support container version Hi Does OpenSAF AMF support container version? thanks, Prince Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. _______________________________________________ Opensaf-users mailing list Ope...@li... https://clicktime.symantec.com/15siKxspxJWApe8gD34Yb?h=dbSISdE6gCDfnW0-068hDKoT34xnNHU_E6eG22EWZ9w=&u=https://lists.sourceforge.net/lists/listinfo/opensaf-users Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. |
|
From: Philip, P. <pp...@rb...> - 2022-07-26 04:18:06
|
Hi Does OpenSAF AMF support container version? thanks, Prince Notice: This e-mail together with any attachments may contain information of Ribbon Communications Inc. and its Affiliates that is confidential and/or proprietary for the sole use of the intended recipient. Any review, disclosure, reliance or distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please notify the sender immediately and then delete all copies, including any attachments. |
|
From: Gary L. <gar...@de...> - 2022-06-01 01:19:18
|
The OpenSAF community is pleased to announce the availability of the OpenSAF 5.22.06 release. The source code for OpenSAF 5.22.06 and the corresponding documentation can be downloaded using the following links: http://sourceforge.net/projects/opensaf/files/releases/opensaf-5.22.06.tar.gz/download http://sourceforge.net/projects/opensaf/files/docs/opensaf-documentation-5.22.06.tar.gz/download For a complete list of new features in this release, please refer to the NEWS at the wiki: https://sourceforge.net/p/opensaf/wiki/NEWS-5.22.06/ See the ChangeLog for a full list of changes in this release: https://sourceforge.net/p/opensaf/wiki/ChangeLog-5.22.06/ Thank you for your continued interest in OpenSAF and to everyone who has contributed to this release. |