Contract Offer

2019-07-04 Thread SAKI NISHIYO
We’d like to contract your services for a period of 12 months. Please advise if you are open to new opportunities. Regards, SAKI NISHIYO

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-10 Thread Jiong Wang
Alexei Starovoitov writes: > On Fri, May 10, 2019 at 09:30:28AM +0100, Jiong Wang wrote: >> >> Alexei Starovoitov writes: >> >> > On Thu, May 09, 2019 at 01:32:30PM +0100, Jiong Wang wrote: >> >> >> >> Alexei Starovoitov writes: >> >> >> >> > On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong W

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-10 Thread Alexei Starovoitov
On Fri, May 10, 2019 at 09:30:28AM +0100, Jiong Wang wrote: > > Alexei Starovoitov writes: > > > On Thu, May 09, 2019 at 01:32:30PM +0100, Jiong Wang wrote: > >> > >> Alexei Starovoitov writes: > >> > >> > On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong Wang wrote: > >> >> > >> >> I might be m

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-10 Thread Jiong Wang
Alexei Starovoitov writes: > On Thu, May 09, 2019 at 01:32:30PM +0100, Jiong Wang wrote: >> >> Alexei Starovoitov writes: >> >> > On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong Wang wrote: >> >> >> >> I might be misunderstanding your points, please just shout if I am wrong. >> >> >> >> Supp

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-09 Thread Alexei Starovoitov
On Thu, May 09, 2019 at 01:32:30PM +0100, Jiong Wang wrote: > > Alexei Starovoitov writes: > > > On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong Wang wrote: > >> > >> I might be misunderstanding your points, please just shout if I am wrong. > >> > >> Suppose the following BPF code: > >> > >>

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-09 Thread Jiong Wang
Jiong Wang writes: > At the moment we have single backend hook "bpf_jit_hardware_zext", once a > backend enable it, verifier just insert zero extension for all identified > alu32 and narrow loads. > > Given verifier analysis info is not pushed down to JIT back-ends, verifier > needs more back-

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-09 Thread Jiong Wang
Alexei Starovoitov writes: > On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong Wang wrote: >> >> I might be misunderstanding your points, please just shout if I am wrong. >> >> Suppose the following BPF code: >> >> unsigned helper(unsigned long long, unsigned long long); >> unsigned long lo

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-08 Thread Alexei Starovoitov
On Wed, May 08, 2019 at 03:45:12PM +0100, Jiong Wang wrote: > > I might be misunderstanding your points, please just shout if I am wrong. > > Suppose the following BPF code: > > unsigned helper(unsigned long long, unsigned long long); > unsigned long long test(unsigned *a, unsigned int c) >

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-08 Thread Jiong Wang
Alexei Starovoitov writes: > On Fri, May 03, 2019 at 11:42:28AM +0100, Jiong Wang wrote: >> BPF helper call transfers execution from eBPF insns to native functions >> while verifier insn walker only walks eBPF insns. So, verifier can only >> knows argument and return value types from explicit he

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-08 Thread Jiong Wang
Jiong Wang writes: > Daniel Borkmann writes: > >> On 05/03/2019 12:42 PM, Jiong Wang wrote: >>> BPF helper call transfers execution from eBPF insns to native functions >>> while verifier insn walker only walks eBPF insns. So, verifier can only >>> knows argument and return value types from expli

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-06 Thread Jiong Wang
Daniel Borkmann writes: > On 05/03/2019 12:42 PM, Jiong Wang wrote: >> BPF helper call transfers execution from eBPF insns to native functions >> while verifier insn walker only walks eBPF insns. So, verifier can only >> knows argument and return value types from explicit helper function >> prot

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-06 Thread Alexei Starovoitov
On Fri, May 03, 2019 at 11:42:28AM +0100, Jiong Wang wrote: > BPF helper call transfers execution from eBPF insns to native functions > while verifier insn walker only walks eBPF insns. So, verifier can only > knows argument and return value types from explicit helper function > prototype descripti

Re: [PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-06 Thread Daniel Borkmann
On 05/03/2019 12:42 PM, Jiong Wang wrote: > BPF helper call transfers execution from eBPF insns to native functions > while verifier insn walker only walks eBPF insns. So, verifier can only > knows argument and return value types from explicit helper function > prototype descriptions. > > For 32-b

[PATCH v6 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-03 Thread Jiong Wang
BPF helper call transfers execution from eBPF insns to native functions while verifier insn walker only walks eBPF insns. So, verifier can only knows argument and return value types from explicit helper function prototype descriptions. For 32-bit optimization, it is important to know whether argum

[PATCH v5 bpf-next 01/17] bpf: verifier: offer more accurate helper function arg and return type

2019-05-01 Thread Jiong Wang
BPF helper call transfers execution from eBPF insns to native functions while verifier insn walker only walks eBPF insns. So, verifier can only knows argument and return value types from explicit helper function prototype descriptions. For 32-bit optimization, it is important to know whether argum

Re: [PATCH bpf-next 0/2] bpf: offer maximum packet offset info

2018-11-09 Thread Daniel Borkmann
On 11/08/2018 10:08 AM, Jiong Wang wrote: > The maximum packet offset accessed by one BPF program is useful > information. > > Because sometimes there could be packet split and it is possible for some > reasons (for example performance) we want to reject the BPF program if the > maximum packet siz

[PATCH bpf-next 0/2] bpf: offer maximum packet offset info

2018-11-08 Thread Jiong Wang
The maximum packet offset accessed by one BPF program is useful information. Because sometimes there could be packet split and it is possible for some reasons (for example performance) we want to reject the BPF program if the maximum packet size would trigger such split. Normally, MTU value is tre

Apply For Affordable Loan Offer

2018-10-15 Thread rifat
Do you need a loan? If YES Kindly contact us via: citigrouploaninvestm...@aol.com

Job Offer

2018-09-15 Thread PineCone Research LLC
EMPLOYMENT TITLE: PAYROLL COORDINATOR EMPLOYMENT TYPE: PART-TIME (Work From Home) SALARY: $4500.00 Monthly PineCone Research is pleased to extend this offer of employment for the position of a Payroll Coordinator. POSITION SUMMARY: As a Payroll Coordinator, you will process all aspects of

partnership offer,

2018-07-30 Thread Juliet Muhammad
I want us to join hands as partners because i have a deal for you.

partnership offer

2018-07-29 Thread Rosarita Houmam
I want us to join hands as partners because i have a deal for you

Loan Offer

2018-04-25 Thread Coleman Krosberg
Thank you for your time, We are looking for clients in your area of residents with good business or project that requires financing to execute, or who wants a loan to do business, we do give loans with low interest. Please get back to me if you are interested in this or you know anybody who ha

Job Offer In USA

2017-09-15 Thread Valero Energy Recruitment
Valero Energy Oil & Gas Company USA Employment Opportunity in Texas, USA. Oil & Gas Sector ( NEW PLANT RIG ) Salary Range $7,000 USD - $11,700 Per Month Kindly send your CV/RESUME for more details regarding our Job Program, Employment offers for all Offices. CC: Forward All Documents/Certificates

Job Offer In USA

2017-09-13 Thread Valero Energy Recruitment
Valero Energy Oil & Gas Company USA Employment Opportunity in Texas, USA. Oil & Gas Sector ( NEW PLANT RIG ) Salary Range $7,000 USD - $11,700 Per Month Kindly send your CV/RESUME for more details regarding our Job Program, Employment offers for all Offices. CC: Forward All Documents/Certificates

Loan Offer

2017-07-08 Thread Roy Wood
Exclusive guaranteed loan offer of any amount at a 3% rate. Contact Mr. Roy Wood from Save&Spend and see for yourself that you will be satisfied. please contact FCS Directly only via roywoodsavingsunitedloans@gmail. com if yes,apply now with your details 1.Full Name: 2.Sex: 3.Ag

Investment Interest & Offer

2017-06-07 Thread Seydou Thieba
We are a Fund management company located in the United Kingdom, we specialize in searching for potential investments opportunities for our high net-worth clients globally. Should this be of interest to you, please do not hesitate to email me for further information. Thanks Seydou Thieba --- T

Please I want you to patiently read this offer.?

2017-03-31 Thread Mr.Hassan Habib
Hello. I know this means of communication may not be morally right to you as a person but I also have had a great thought about it and I have come to this conclusion which I am about to share with you. INTRODUCTION:I am the Credit Manager U. B. A Bank of Burkina Faso Ouagadougou and in one way

Re: Great Loan offer!!!

2017-03-18 Thread Bar. Nasir Mehmood Raja
My name is Yusuf Khaled Group Chief Financial Officer in GIFG, UAE. The GIFG is financial powerhouse in the gulf region, capable of funding extremely wide variety of projects including real estate, amusement parks, eco and green projects, golf courses, hotels and hotel resorts, manufacturing, re

Please I want you to patiently read this offer.?

2017-02-22 Thread Mr.Hassan Habib
Hello. I know this means of communication may not be morally right to you as a person but I also have had a great thought about it and I have come to this conclusion which I am about to share with you. INTRODUCTION:I am the Credit Manager U. B. A Bank of Burkina Faso Ouagadougou and in one way

Xmas Offer

2016-11-27 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $3 million USD. Contact ( julieleac...@gmail.com ) for claims.

Xmas Offer

2016-11-26 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $3 million USD. Contact ( julieleac...@gmail.com ) for claims.

Xmas Offer

2016-11-25 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $3 million USD. Contact ( julieleac...@gmail.com ) for claims.

Xmas Offer

2016-11-25 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $3 million USD. Contact ( julieleac...@gmail.com ) for claims.

QUICK LOAN OFFER

2016-11-20 Thread Sky Finance
Do You Need A Loan Of Any Kind ? If Yes Email Now For More Info Contact us on: skyfinance...@gmail.com --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Great Offer

2016-09-05 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $2 million USD. Contact (julieleach...@hotmail.com) for claims.

Great Offer

2016-09-05 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $2 million USD. Contact (julieleach...@hotmail.com) for claims.

Great Offer

2016-09-05 Thread Mrs Julie Leach
You are a recipient to Mrs Julie Leach Donation of $2 million USD. Contact (julieleach...@hotmail.com) for claims.

QUICK LOAN OFFER

2016-06-12 Thread International Loan Firm

Offer

2016-06-02 Thread Pedro Quezada
You are a recipient to Mr Pedro Quezada Donation of 2M USD. Contact (qpedro...@gmail.com) for claims.

Offer

2016-06-02 Thread Pedro Quezada
You are a recipient to Mr Pedro Quezada Donation of 2M USD. Contact (qpedro...@gmail.com) for claims.

Loan @ 3% Rate offer. Reply if interested.

2016-02-19 Thread loan
--

[PATCH V6 2/8] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2016-01-26 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index e4867a7..c0eddd7 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -235,6 +235,

[PATCH V5 2/9] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-12-24 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index e4867a7..c0eddd7 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -235,6 +235,

2% interest rate Loan Offer

2015-10-19 Thread Global_loan
Good day to you, We are Global financial Group formed to help those in need of financial help of any kind. contact us for an urgent loan of any kind at 2% interest rate. Email us on globalservi...@financier.com Dr Mrs Elizabeth Duke CEO -- To unsubscribe from this list: send the line "unsubscri

Loan Offer

2015-10-15 Thread Loan
Contact us as we offer our finance service at a low and affordable interest rate for long and short cash term. Interested applicant should contact us for further acquisition procedures. Thanks as we remain obliged to render service to you; worldtrading1...@gmail.com -- To unsubscribe from this

Loan Offer

2015-09-29 Thread Loan
Contact us as we offer our finance service at a low and affordable interest rate for long and short cash term. Interested applicant should contact us for further acquisition procedures. Thanks as we remain obliged to render service to you; worldtrading1...@gmail.com -- To unsubscribe from this

[PATCH V4 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-28 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 30d3a1f..2ca3ac1 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -236,6 +236,

[PATCH V3 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-21 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 30d3a1f..2ca3ac1 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -236,6 +236,

RE: [V2 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-16 Thread Dexuan Cui
> From: David Miller > Sent: Thursday, July 16, 2015 12:13 > > From: Dexuan Cui > Date: Tue, 14 Jul 2015 02:58:03 -0700 > > > A helper function is also added. > > > > diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h > > @@ -236,6 +236,7 @@ struct vmbus_channel_offer { > > #define VMB

Re: [V2 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-15 Thread David Miller
From: Dexuan Cui Date: Tue, 14 Jul 2015 02:58:03 -0700 > A helper function is also added. > > Signed-off-by: Dexuan Cui > --- > include/linux/hyperv.h | 7 +++ > 1 file changed, 7 insertions(+) > > diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h > index 30d3a1f..aa21814 10064

[V2 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-14 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 30d3a1f..aa21814 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -236,6 +236,

[PATCH 1/7] Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock)

2015-07-06 Thread Dexuan Cui
A helper function is also added. Signed-off-by: Dexuan Cui --- include/linux/hyperv.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 30d3a1f..aa21814 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -236,6 +236,

LOAN OFFER

2015-06-30 Thread wenny_budi_p
Hello, do you need a business or personal loan interest rate of 3%? If interested, kindly get back to us with the following information. NAME OF BORROWER: * COUNTRY: * GENDER: * OCCUPATION: * MONTHLY INCOME: * Loan Amount Required: * Loan Duration: * LOAN PURPOSE: * PHONE NUMBERS: -- To unsub