Re: [ovs-dev] [PATCH ovn] tests: Use ovn-nbctl --wait=hv sync for I-P test.

2020-10-21 Thread Gregory Smith
Numan Siddique wrote: > On Thu, Oct 15, 2020 at 4:45 AM Gregory Smith wrote: > > > > Gregory Smith wrote: > > > This patch makes the "controller I-P handling with monitoring disabled" > > > testcase more determinstic, by waiting for flows to be synchroni

Re: [ovs-dev] [PATCH ovn] tests: Use ovn-nbctl --wait=hv sync for I-P test.

2020-10-14 Thread Gregory Smith
Gregory Smith wrote: > This patch makes the "controller I-P handling with monitoring disabled" > testcase more determinstic, by waiting for flows to be synchronized to > the hypervisor before counting them. > > Signed-off-by: Gregory Smith > --- It turns out this pat

[ovs-dev] [PATCH ovn] tests: Use ovn-nbctl --wait=hv sync for I-P test.

2020-10-14 Thread Gregory Smith
This patch makes the "controller I-P handling with monitoring disabled" testcase more determinstic, by waiting for flows to be synchronized to the hypervisor before counting them. Signed-off-by: Gregory Smith --- tests/ovn.at | 8 ++-- 1 file changed, 6 insertions(+), 2 deletion

[ovs-dev] [PATCH ovn] tests: Only use POSIX-compliant comm flags.

2020-10-13 Thread Gregory Smith
Fixes: ba40e1c5 ("Support logical switches with multiple localnet ports") Signed-off-by: Gregory Smith --- tests/ovn.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ovn.at b/tests/ovn.at index 488fd119b..540e77d11 100644 --- a/tests/ovn.at +++ b/te

[ovs-dev] [PATCH] tests: Only use POSIX-compliant comm flags.

2020-10-13 Thread Gregory Smith
Fixes: ba40e1c5 ("Support logical switches with multiple localnet ports") Signed-off-by: Gregory Smith --- tests/ovn.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ovn.at b/tests/ovn.at index 488fd119b..540e77d11 100644 --- a/tests/ovn.at +++ b/te

[ovs-dev] [PATCH ovn] tests: Use ovn-nbctl --wait=hv for DHCP option tests.

2020-10-12 Thread Gregory Smith
2c4b49 ("Add support for DHCP domain search option (119)") Signed-off-by: Gregory Smith --- tests/ovn.at | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ovn.at b/tests/ovn.at index 6f1ab5926..488fd119b 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -5815

[ovs-dev] Your help

2020-07-29 Thread Mrs. Elizabeth Smith
May the peace of God be with you and your family.I know it will be a great surprise reading from me today but consider this a divine intervention as a pastor explained to my understanding. My name is Mrs. Elizabeth Smith .G, a widow from Oklahoma USA and am writing you from my sick bed because i

[ovs-dev] [PATCH ovn] test: Fix "ovn-nbctl - daemon retry connection" on musl

2020-04-15 Thread Greg A. Smith
From: Gregory Smith On musl libc, signal_name() returns "signal 15", not "Terminated". Fixes: 530a1c18f ("ovn-nbctl: Daemon mode should retry when IDL...") Signed-off-by: Gregory Smith --- tests/ovn-nbctl.at | 2 +- 1 file changed, 1 insertion(+), 1 delet

[ovs-dev] [PATCH ovn] test: Fix "ovn-nbctl - daemon retry connection" on musl

2020-04-10 Thread Greg A. Smith
On musl libc, signal_name() returns "signal 15", not "Terminated". Fixes: 530a1c18f ("ovn-nbctl: Daemon mode should retry when IDL...") Signed-off-by: Gregory Smith --- tests/ovn-nbctl.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ovn

Re: [ovs-dev] Investment Seed Capital

2020-01-08 Thread Kyle Smith
details, please reply to this email so we can discuss further. Yours faithfully. Kyle Smith Mobile Whatsapp + 1 (646) 441 8989 (USA) ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] Investment Seed Capital

2020-01-07 Thread Kyle Smith
details, please reply to this email so we can discuss further. Yours faithfully. Kyle Smith Mobile Whatsapp + 1 (646) 441 8989 (USA) ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] Investment Project

2020-01-06 Thread Kyle Smith
, please reply to this email so we can discuss further. Yours faithfully. Kyle Smith Mobile Whatsapp + 1 (646) 441 8989 (USA) ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] Loan Available.

2019-11-07 Thread Harry Smith
signing of contract and the application process and approval of loan can be completed as early as ten (10) banking days or less. Contact me for further directives / information. Sincerely. Mr. Harry Smith Email: harrysmith1...@yahoo.com ___ dev mailing

Re: [ovs-dev] [PATCH v6] pinctrl: Check requested IP in DHCPREQUEST messages

2018-12-12 Thread Gregory Smith
Ben Pfaff wrote: > On Wed, Dec 12, 2018 at 04:26:37PM +, Gregory Smith wrote: > > See RFC 2131, section 4.3.2. When handling a DHCPREQUEST message, the > > server should validate that the client's requested IP matches the > > offered IP. If not, the server should

[ovs-dev] [PATCH v6] pinctrl: Check requested IP in DHCPREQUEST messages

2018-12-12 Thread Gregory Smith
or as the ciaddr, depending on the client's state. Signed-off-by: Gregory Smith --- v5 -> v6 * Use get_unaligned_be32() for unaligned access. v4 -> v5 * Fixed clang cast alignment warnings. v3 -> v4 * Reworked the option-parsing while loop. v2 -> v3

Re: [ovs-dev] [PATCH v5] pinctrl: Check requested IP in DHCPREQUEST messages

2018-12-11 Thread Gregory Smith
Hi Ben, Thanks for taking a look. Ben Pfaff wrote: > This code looks pretty optimistic about things that I'm not sure it > should depend on. It uses ALIGNED_CAST in multiple places although I > don't see a reason to assume that the data in question is actually > aligned. Right. I should've spen

[ovs-dev] [PATCH v5] pinctrl: Check requested IP in DHCPREQUEST messages

2018-12-05 Thread Gregory Smith
or as the ciaddr, depending on the client's state. Signed-off-by: Gregory Smith --- v4 -> v5 * Fixed clang cast alignment warnings. v3 -> v4 * Reworked the option-parsing while loop. v2 -> v3 * Fixed long line. v1 -> v2 * Refactored DHC

[ovs-dev] [PATCH v4] pinctrl: Check requested IP in DHCPREQUEST messages

2018-12-05 Thread Gregory Smith
or as the ciaddr, depending on the client's state. v3 -> v4 * Reworked the option-parsing while loop. v2 -> v3 * Fixed long line. v1 -> v2 * Refactored DHCP option parsing and packet boundary checks. Signed-off-by: Gregory Smith --- lib/dhcp.h

[ovs-dev] [PATCH v3] pinctrl: Check requested IP in DHCPREQUEST messages

2018-11-26 Thread Gregory Smith
or as the ciaddr, depending on the client's state. Signed-off-by: Gregory Smith --- v2 -> v3 * Fixed long line. v1 -> v2 * Refactored DHCP option parsing and packet boundary checks. lib/dhcp.h | 3 + ovn/controller/pinctrl.c | 124 +++

[ovs-dev] [PATCH v2] pinctrl: Check requested IP in DHCPREQUEST messages

2018-11-26 Thread Gregory Smith
or as the ciaddr, depending on the client's state. Signed-off-by: Gregory Smith --- v1 -> v2 * Refactored DHCP option parsing and packet boundary checks. lib/dhcp.h | 3 + ovn/controller/pinctrl.c | 124 --- ovn/lib/ovn-l7.h | 9

Re: [ovs-dev] [PATCH] pinctrl: Check requested IP in DHCPREQUEST messages

2018-11-19 Thread Gregory Smith
Numan Siddique wrote: > On Fri, Nov 16, 2018 at 11:03 PM Gregory Smith wrote: > > > See RFC 2131, section 4.3.2. When handling a DHCPREQUEST message, the > > server should validate that the client's requested IP matches the > > offered IP. > > When we added

[ovs-dev] [PATCH] pinctrl: Check requested IP in DHCPREQUEST messages

2018-11-16 Thread Gregory Smith
or as the ciaddr, depending on the client's state. Signed-off-by: Gregory Smith --- lib/dhcp.h | 3 + ovn/controller/pinctrl.c | 79 +--- tests/ovn.at | 188 +-- 3 files changed, 220 insertions(+), 50 del

[ovs-dev] Attention

2018-09-04 Thread Veronica Smith via dev
Hello My name is Veronica Smith, I work with the National Bank of the Virgin Islands. I am contacting you because i have a client who has mandated me to source a middle man for a 4,000,000 barrels of  Libyan Crude Oil sales. They are offering the middleman a 20% commission from the proceeds.I

[ovs-dev] Network virtualization User Contact List.

2018-04-16 Thread Katelyn Smith
interested and I will get back to you with the counts and pricing. Regards, Katelyn Smith. Marketing Executive To opt out, please reply with Leave Out in the Subject Line. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman

[ovs-dev] HII

2018-02-13 Thread Smith
-- Hello My Dear, is nice to meet you, my names are Mary Smith, how are you doing,i hope all is well with you (mariasmitha...@gmail.com),i look forward to reading from you soon, Yours Friend, Mary Smith. ___ dev mailing list d...@openvswitch.org

[ovs-dev] SAP SuccessFactors Users List

2018-02-09 Thread Katelyn Smith
and Company Size (Revenue and Employee). Let me know if you have any other target criteria and I will get back to you with the counts and pricing. Regards, Katelyn Smith Marketing Executive to opt out, please reply with Leave Out in the Subject Line

[ovs-dev] Dell Software Users List

2017-11-29 Thread Katelyn Smith
and I will get back to you with the counts and pricing. Regards, Katelyn Smith Marketing Executive to opt out, please reply with Leave Out in the Subject Line. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] Bug Tracking Software Users List

2017-09-19 Thread Katelyn Smith
... Information fields: Names, Title, Email, Phone, Company Name, Company URL, Company physical address, SIC Code, Industry, Company Size (Revenue and Employee). Let me know if you are interested and I will get back to you with the counts, sample and pricing. Regards, Katelyn Smith Marketing

[ovs-dev] SAP SuccessFactors Users List

2017-09-07 Thread Katelyn Smith
users like: Workday, Taleo, Kenexa, PeopleSoft, SAP Ariba, Infor, Oracle, Salesforce, BusinessObjects, Sybase, NetSuite and many more... Let me know if you are interested and I will get back to you with the counts and pricing. Regards, Katelyn Smith Marketing Executive To opt out, please reply

Re: [ovs-dev] Any Industry Professionals Contact Info

2017-08-30 Thread Laura Smith
ks & Regards,   Laura Smith Marketing Coordinator  - To remove from this mailing: reply with subject line as "leave out."http://e.sbemaillinks.email/mail/index.php/lists/mr2890zrqsf8d/unsubscribe/bh762ad9tl0e6/b

[ovs-dev] Business Proposal 2017

2017-07-18 Thread Niklaus Smith
you wish to reach. Geography: North America, South America, APAC, Middle East, Africa, Europe and United Kingdom. Kindly let me know your specifications so that I shall send across more details accordingly. Look forward to hearing from you. Regards, Niklaus Smith Business Developme

Re: [ovs-dev] Docker/PuppetLabs/Chef Customers list

2017-05-11 Thread Eva Smith
Hi, A gentle follow up to my previous email. Please share your thoughts so that we can proceed accordingly. Awaiting your response. Best regards, Eva From: Eva Smith [mailto:eva.sm...@leadspioneer.com] Sent: Wednesday, May 10, 2017 3:20 PM To: 'd...@openvswitc

[ovs-dev] Docker/PuppetLabs/Chef Customers list

2017-05-10 Thread Eva Smith
, Eva Smith Lead generation department Brigade ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] You have been nominated for the £2 million charity support

2017-05-09 Thread Barrister Bobby Smith
You have been nominated for the charity program to support Prince Alwaleed Bin Tala, please contact: http://bit.do/23awsa for more information. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___

[ovs-dev] B2b Email Marketing List

2017-04-24 Thread becky . smith
let us know based on the below data fields to provide you with detailed information for your review. Target Technology: Target Titles: Target Geography: Await your response! Thanks, Becky Smith *Marketing Analyst* To Opt out Response Unsubscribe in subjectline