[PATCH] perf tools: Fix syntax in documentation of intel-pt config option

2017-08-31 Thread Jack Henschel
As specified in tools/perf/Documentation/perf-config.txt, perf configuration items must be in 'key = value' format, otherwise the following error message occurs: $ perf record -e intel_pt//u -- ls bad config file line 2 in ~/.perfconfig $ cat .perfconfig [intel-pt] mispred-all Changing

[tip:perf/core] perf stat: Fix path to PMU formats in documentation

2017-08-29 Thread tip-bot for Jack Henschel
Commit-ID: 726647d0526c5c2f3472010677122b89d9e4ef88 Gitweb: http://git.kernel.org/tip/726647d0526c5c2f3472010677122b89d9e4ef88 Author: Jack Henschel <jack...@mailbox.org> AuthorDate: Thu, 24 Aug 2017 15:20:22 +0200 Committer: Arnaldo Carvalho de Melo <a...@redhat.com> CommitD

[tip:perf/core] perf stat: Fix path to PMU formats in documentation

2017-08-29 Thread tip-bot for Jack Henschel
Commit-ID: 726647d0526c5c2f3472010677122b89d9e4ef88 Gitweb: http://git.kernel.org/tip/726647d0526c5c2f3472010677122b89d9e4ef88 Author: Jack Henschel AuthorDate: Thu, 24 Aug 2017 15:20:22 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 11:05:09 -0300 perf stat

[PATCH] perf stat: Fix path to PMU formats in documentation

2017-08-24 Thread Jack Henschel
As defined in tools/perf/util/pmu.c, the EVENT_SOURCE_DEVICE_PATH is /sys/bus/event_source/devices/ (no traling 's' in event_source) This patch corrects the path in the perf stat documentation Signed-off-by: Jack Henschel <jack...@mailbox.org> --- tools/perf/Documentation/perf-stat.t

[PATCH] perf stat: Fix path to PMU formats in documentation

2017-08-24 Thread Jack Henschel
As defined in tools/perf/util/pmu.c, the EVENT_SOURCE_DEVICE_PATH is /sys/bus/event_source/devices/ (no traling 's' in event_source) This patch corrects the path in the perf stat documentation Signed-off-by: Jack Henschel --- tools/perf/Documentation/perf-stat.txt | 4 ++-- 1 file changed, 2

Re: [PATCH] usb: gadget: pch_udc: add checks for dma mapping errors

2017-08-23 Thread Jack Pham
dma_map_single(>pdev->dev, ep0out_buf, > UDC_EP0OUT_BUFF_SIZE * 4, > DMA_FROM_DEVICE); > + if (dma_mapping_error(>pdev->dev, dev->dma_addr)) { > + dev->dma_addr = DMA_ADDR_INVAL

Re: [PATCH] usb: gadget: pch_udc: add checks for dma mapping errors

2017-08-23 Thread Jack Pham
dev->dev, ep0out_buf, > UDC_EP0OUT_BUFF_SIZE * 4, > DMA_FROM_DEVICE); > + if (dma_mapping_error(>pdev->dev, dev->dma_addr)) { > + dev->dma_addr = DMA_ADDR_INVALID; > + return

Hello Beautiful,

2017-08-05 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello Beautiful,

2017-08-05 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-07-16 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-07-16 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Re: [PATCH v6 1/3] iio: adc: Add support for DLN2 ADC

2017-07-10 Thread Jack Andersen
12:39:33 -1000 > Jack Andersen <jackoa...@gmail.com> wrote: > >> This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. >> ADC is the fourth and final component of the DLN2 for the kernel. >> >> Signed-off-by: Jack Andersen <jackoa...@gmai

Re: [PATCH v6 1/3] iio: adc: Add support for DLN2 ADC

2017-07-10 Thread Jack Andersen
It's a pleasure to contribute! The iio interface has simplified our robotics telemetry solution considerably; no more awkward setup. A simple udev script is ideal for bringing the buffer online. On 9 July 2017 at 07:12, Jonathan Cameron wrote: > On Thu, 6 Jul 2017 12:39:33 -1000 > Jack An

[PATCH v6 2/3] mfd: dln2: Add cell for initializing DLN2 ADC

2017-07-06 Thread Jack Andersen
This patch extends the DLN2 driver; adding cell for adc_dln2 module. Signed-off-by: Jack Andersen <jackoa...@gmail.com> Acked-for-MFD-by: Lee Jones <lee.jo...@linaro.org> --- Changes in v6: - Add commit message For my own reference: Acked-for-MFD-by: Lee Jones <lee.j

[PATCH v6 2/3] mfd: dln2: Add cell for initializing DLN2 ADC

2017-07-06 Thread Jack Andersen
This patch extends the DLN2 driver; adding cell for adc_dln2 module. Signed-off-by: Jack Andersen Acked-for-MFD-by: Lee Jones --- Changes in v6: - Add commit message For my own reference: Acked-for-MFD-by: Lee Jones --- drivers/mfd/dln2.c | 12 1 file changed, 12 insertions

[PATCH v6 1/3] iio: adc: Add support for DLN2 ADC

2017-07-06 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and

[PATCH v6 1/3] iio: adc: Add support for DLN2 ADC

2017-07-06 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and error handling. - Remove

Re: [PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-06 Thread Jack Andersen
device state. On 5 July 2017 at 21:09, Lee Jones <lee.jo...@linaro.org> wrote: > On Wed, 05 Jul 2017, Jack Andersen wrote: > >> I have mixed feelings about making this patch. The device appears to >> lose its ability to send command responses when the driver >> unexp

Re: [PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-06 Thread Jack Andersen
device state. On 5 July 2017 at 21:09, Lee Jones wrote: > On Wed, 05 Jul 2017, Jack Andersen wrote: > >> I have mixed feelings about making this patch. The device appears to >> lose its ability to send command responses when the driver >> unexpectedly goes offline (probably

Re: [PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-05 Thread Jack Andersen
another issue causing init to fail and a restart doesn't fix, this will trigger an endless probe loop. I'm not sure if there's a better way to discern this condition. On 5 July 2017 at 11:12, Jack Andersen <jackoa...@gmail.com> wrote: > There's an issue with reinitializing DLN2 hardwa

Re: [PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-05 Thread Jack Andersen
another issue causing init to fail and a restart doesn't fix, this will trigger an endless probe loop. I'm not sure if there's a better way to discern this condition. On 5 July 2017 at 11:12, Jack Andersen wrote: > There's an issue with reinitializing DLN2 hardware if ADC channel ev

[PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-05 Thread Jack Andersen
a restart command in the event of a failed init. To the kernel's perspective, this is the rough equivalent of a disconnect and reconnect, so another probe occurs shortly afterwards. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- drivers/mfd/dln2.c | 11 ++- 1 file chang

[PATCH v5 3/3] mfd: dln2: Send restart command if HW init fails

2017-07-05 Thread Jack Andersen
a restart command in the event of a failed init. To the kernel's perspective, this is the rough equivalent of a disconnect and reconnect, so another probe occurs shortly afterwards. Signed-off-by: Jack Andersen --- drivers/mfd/dln2.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion

[PATCH v5 1/3] iio: adc: Add support for DLN2 ADC

2017-07-05 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and

[PATCH v5 1/3] iio: adc: Add support for DLN2 ADC

2017-07-05 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and error handling. - Remove

[PATCH v5 2/3] mfd: dln2: Add cell for initializing DLN2 ADC

2017-07-05 Thread Jack Andersen
Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- drivers/mfd/dln2.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/mfd/dln2.c b/drivers/mfd/dln2.c index 704e189..a22ab8c 100644 --- a/drivers/mfd/dln2.c +++ b/drivers/mfd/dln2.c @@ -53,6 +53,7 @@ enum dln2_

[PATCH v5 2/3] mfd: dln2: Add cell for initializing DLN2 ADC

2017-07-05 Thread Jack Andersen
Signed-off-by: Jack Andersen --- drivers/mfd/dln2.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/mfd/dln2.c b/drivers/mfd/dln2.c index 704e189..a22ab8c 100644 --- a/drivers/mfd/dln2.c +++ b/drivers/mfd/dln2.c @@ -53,6 +53,7 @@ enum dln2_handle

Re: [PATCH] x86/mce/AMD: Allow any CPU to initialize smca_banks array

2017-06-30 Thread Jack Miller
This patch works for me, thanks! Jack On Thu, Jun 29, 2017 at 1:08 PM, Yazen Ghannam <yazen.ghan...@amd.com> wrote: > From: Yazen Ghannam <yazen.ghan...@amd.com> > > Current SMCA implementations have the same banks on each CPU with the > non-core banks only visible to a

Re: [PATCH] x86/mce/AMD: Allow any CPU to initialize smca_banks array

2017-06-30 Thread Jack Miller
This patch works for me, thanks! Jack On Thu, Jun 29, 2017 at 1:08 PM, Yazen Ghannam wrote: > From: Yazen Ghannam > > Current SMCA implementations have the same banks on each CPU with the > non-core banks only visible to a "master thread" on each Die. Practically, >

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-29 Thread Jack Miller
where (need to check), but if I could keep this patch to a one-liner by detecting the right thread, I'd like to. Jack

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-29 Thread Jack Miller
could keep this patch to a one-liner by detecting the right thread, I'd like to. Jack

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-28 Thread Jack Miller
On Wed, Jun 28, 2017 at 1:00 PM, Ghannam, Yazen <yazen.ghan...@amd.com> wrote: >> -Original Message- >> From: themo...@gmail.com [mailto:themo...@gmail.com] On Behalf Of >> Jack Miller >> Sent: Wednesday, June 28, 2017 1:44 PM >> To: Borislav Petkov

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-28 Thread Jack Miller
On Wed, Jun 28, 2017 at 1:00 PM, Ghannam, Yazen wrote: >> -Original Message- >> From: themo...@gmail.com [mailto:themo...@gmail.com] On Behalf Of >> Jack Miller >> Sent: Wednesday, June 28, 2017 1:44 PM >> To: Borislav Petkov >> Cc: Jack Miller

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-28 Thread Jack Miller
On Wed, Jun 28, 2017 at 4:22 AM, Borislav Petkov <b...@suse.de> wrote: > On Tue, Jun 27, 2017 at 07:06:30PM -0500, Jack Miller wrote: >> After a call to firmware SwitchBSP(), > > What is that and who does that? SwitchBSP() is part of the UEFI MPServices Protocol which I be

Re: [PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-28 Thread Jack Miller
On Wed, Jun 28, 2017 at 4:22 AM, Borislav Petkov wrote: > On Tue, Jun 27, 2017 at 07:06:30PM -0500, Jack Miller wrote: >> After a call to firmware SwitchBSP(), > > What is that and who does that? SwitchBSP() is part of the UEFI MPServices Protocol which I believe

[PATCH v4] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and

[PATCH v4] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and error handling. - Remove

Re: [PATCH v3] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
Please ignore this patch, a stray modification to lsgpio.c got in. On 27 June 2017 at 14:53, Jack Andersen <jackoa...@gmail.com> wrote: > This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. > ADC is the fourth and final component of the DLN2 for the kernel. &g

Re: [PATCH v3] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
Please ignore this patch, a stray modification to lsgpio.c got in. On 27 June 2017 at 14:53, Jack Andersen wrote: > This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. > ADC is the fourth and final component of the DLN2 for the kernel. > > Signed-off-by: J

[PATCH v3] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and

[PATCH v3] iio: adc: Add support for DLN2 ADC

2017-06-27 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- Changes in v2: - Address Peter's remarks; bringing consistency to C99 syntax, dev_dbg usage, and error handling. - Remove

[PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-27 Thread Jack Miller
0's APIC ID != 0, but the other topology/CPUID based functions don't seem to easily differentiate CPU 0 and thread 0 or possibly aren't inited at this point. Suggestions for a better mechanism welcome. Signed-off-by: Jack Miller <j...@codezen.org> --- arch/x86/kernel/cpu/mcheck/mce_amd

[PATCH] x86/mce/AMD: Fix partial SMCA bank init when CPU 0 != thread 0

2017-06-27 Thread Jack Miller
0's APIC ID != 0, but the other topology/CPUID based functions don't seem to easily differentiate CPU 0 and thread 0 or possibly aren't inited at this point. Suggestions for a better mechanism welcome. Signed-off-by: Jack Miller --- arch/x86/kernel/cpu/mcheck/mce_amd.c | 4 ++-- 1 file changed

[PATCH v2] iio: adc: Add support for DLN2 ADC

2017-06-22 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-adc.c

[PATCH v2] iio: adc: Add support for DLN2 ADC

2017-06-22 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-adc.c | 644

[PATCH] iio: adc: Add support for DLN2 ADC

2017-06-21 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen <jackoa...@gmail.com> --- drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-adc.c

[PATCH] iio: adc: Add support for DLN2 ADC

2017-06-21 Thread Jack Andersen
This patch adds support for Diolan DLN2 ADC via IIO's ADC interface. ADC is the fourth and final component of the DLN2 for the kernel. Signed-off-by: Jack Andersen --- drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-adc.c | 648

[PATCH] DLN2 module for ADC interface

2017-06-21 Thread Jack Andersen
ng appears to be stable. However, this is my first patch, so it's possible I've missed something. Jack Andersen (1): iio: adc: Add support for DLN2 ADC drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-a

[PATCH] DLN2 module for ADC interface

2017-06-21 Thread Jack Andersen
ng appears to be stable. However, this is my first patch, so it's possible I've missed something. Jack Andersen (1): iio: adc: Add support for DLN2 ADC drivers/iio/adc/Kconfig| 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/dln2-a

Hi dear

2017-06-18 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hi dear

2017-06-18 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-06-17 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-06-17 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-06-16 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-06-16 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello Beautiful,

2017-06-03 Thread jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello Beautiful,

2017-06-03 Thread jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

hi dear

2017-06-01 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

hi dear

2017-06-01 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-05-28 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-05-28 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

hi dear

2017-05-27 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

hi dear

2017-05-27 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-05-23 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello dear

2017-05-23 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Re: Getting "Wrong diagnostic page; asked for 7 got 0" error message on HBA's virtual SES device

2017-03-15 Thread Jack Wang
below > wrong error message even though vSES device has failed the command > with illegal request error message and it has not returned any wrong > diagnostic page. > > sdev_printk(KERN_ERR, sdev, > "Wrong diagnostic page; asked for %d got %u\n", > page_code, recv_page_code); > > Thanks, > Sreekanth Hi Sreekanth, To me, we should fix ses module to check 00h List of Supported Diagnostic Pages first before ask for 07h. Add James in CC. Cheers, Jack Wang

Re: Getting "Wrong diagnostic page; asked for 7 got 0" error message on HBA's virtual SES device

2017-03-15 Thread Jack Wang
failed the command > with illegal request error message and it has not returned any wrong > diagnostic page. > > sdev_printk(KERN_ERR, sdev, > "Wrong diagnostic page; asked for %d got %u\n", > page_code, recv_page_code); > > Thanks, > Sreekanth Hi Sreekanth, To me, we should fix ses module to check 00h List of Supported Diagnostic Pages first before ask for 07h. Add James in CC. Cheers, Jack Wang

Hello Beautiful,

2017-03-14 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello Beautiful,

2017-03-14 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Re: [PATCH v2] blk: improve order of bio handling in generic_make_request()

2017-03-10 Thread Jack Wang
rather, they won't notice, but break the kernel). >>> Examples of such modules would be DRBD, ZFS, quite possibly others. >> >> drbd is upstream -- so what is the problem? (if you are having to >> distribute drbd independent of the upstream drbd then why is drbd >> upstream?) >> >> As for ZFS, worrying about ZFS kABI breakage is the last thing we should >> be doing. > > It's better to make external modules not compile than to silently > introduce bugs in them. So yes, I would rename that. > > Mikulas Agree, better rename current->bio_list to current->bio_lists Regards, Jack

Re: [PATCH v2] blk: improve order of bio handling in generic_make_request()

2017-03-10 Thread Jack Wang
t break the kernel). >>> Examples of such modules would be DRBD, ZFS, quite possibly others. >> >> drbd is upstream -- so what is the problem? (if you are having to >> distribute drbd independent of the upstream drbd then why is drbd >> upstream?) >> >> As for ZFS, worrying about ZFS kABI breakage is the last thing we should >> be doing. > > It's better to make external modules not compile than to silently > introduce bugs in them. So yes, I would rename that. > > Mikulas Agree, better rename current->bio_list to current->bio_lists Regards, Jack

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-07 Thread Jack Wang
On 07.03.2017 16:46, Pavel Machek wrote: > On Mon 2017-03-06 10:43:59, Jack Wang wrote: >> >> >> On 06.03.2017 05:40, NeilBrown wrote: >>> On Fri, Mar 03 2017, Jack Wang wrote: >>>> >>>> Thanks Neil for pushing the fix. >>>> >

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-07 Thread Jack Wang
On 07.03.2017 16:46, Pavel Machek wrote: > On Mon 2017-03-06 10:43:59, Jack Wang wrote: >> >> >> On 06.03.2017 05:40, NeilBrown wrote: >>> On Fri, Mar 03 2017, Jack Wang wrote: >>>> >>>> Thanks Neil for pushing the fix. >>>> >

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-07 Thread Jack Wang
On 06.03.2017 21:18, Jens Axboe wrote: > On 03/05/2017 09:40 PM, NeilBrown wrote: >> On Fri, Mar 03 2017, Jack Wang wrote: >>> >>> Thanks Neil for pushing the fix. >>> >>> We can optimize generic_make_request a little bit: >>> - assig

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-07 Thread Jack Wang
On 06.03.2017 21:18, Jens Axboe wrote: > On 03/05/2017 09:40 PM, NeilBrown wrote: >> On Fri, Mar 03 2017, Jack Wang wrote: >>> >>> Thanks Neil for pushing the fix. >>> >>> We can optimize generic_make_request a little bit: >>> - assig

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-06 Thread Jack Wang
On 06.03.2017 05:40, NeilBrown wrote: > On Fri, Mar 03 2017, Jack Wang wrote: >> >> Thanks Neil for pushing the fix. >> >> We can optimize generic_make_request a little bit: >> - assign bio_list struct hold directly instead init and merge >> - remove duplic

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-06 Thread Jack Wang
On 06.03.2017 05:40, NeilBrown wrote: > On Fri, Mar 03 2017, Jack Wang wrote: >> >> Thanks Neil for pushing the fix. >> >> We can optimize generic_make_request a little bit: >> - assign bio_list struct hold directly instead init and merge >> - remove duplic

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-03 Thread Jack Wang
bio_list_merge(_list_on_stack, ); bio_list_merge(_list_on_stack, ); bio_list_merge(_list_on_stack, ); - - bio = bio_list_pop(current->bio_list); } else { - struct bio *bio_next = bio_list_pop(current->bio_list); - bio_io_error(bio); - bio = bio_next; } + bio = bio_list_pop(current->bio_list); } while (bio); current->bio_list = NULL; /* deactivate */ -- Regards, Jack

Re: [PATCH] blk: improve order of bio handling in generic_make_request()

2017-03-03 Thread Jack Wang
bio_list_merge(_list_on_stack, ); - - bio = bio_list_pop(current->bio_list); } else { - struct bio *bio_next = bio_list_pop(current->bio_list); - bio_io_error(bio); - bio = bio_next; } + bio = bio_list_pop(current->bio_list); } while (bio); current->bio_list = NULL; /* deactivate */ -- Regards, Jack

Re: [PATCH v12 6/9] usb: xhci: use bus->sysdev for DMA configuration

2017-02-08 Thread Jack Pham
uperSpeed USB device number 2 using xhci-hcd usb 2-1: device descriptor read/8, error -11 usb 2-1: new SuperSpeed USB device number 3 using xhci-hcd usb 2-1: device descriptor read/8, error -11 usb 2-1: new SuperSpeed USB device number 3 using xhci-hcd usb 2-1: device descriptor read/8, error

Re: [PATCH v12 6/9] usb: xhci: use bus->sysdev for DMA configuration

2017-02-08 Thread Jack Pham
w SuperSpeed USB device number 3 using xhci-hcd usb 2-1: device descriptor read/8, error -11 Thanks, Jack [1] https://lkml.org/lkml/2016/12/9/240 -- The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project

Re: [dm-devel] [PATCH v2 1/1] block: fix blk_queue_split() resource exhaustion

2017-01-02 Thread Jack Wang
ly waits, so - internal READ bios will not be submitted, thus freeze_array will never completes. To fix this, modify generic_make_request to always sort bio_list_on_stack first with lowest level, then higher, until same level. Sent to linux-raid mail list: https://marc.info/?l=linux-raid=148

Re: [dm-devel] [PATCH v2 1/1] block: fix blk_queue_split() resource exhaustion

2017-01-02 Thread Jack Wang
tted, thus freeze_array will never completes. To fix this, modify generic_make_request to always sort bio_list_on_stack first with lowest level, then higher, until same level. Sent to linux-raid mail list: https://marc.info/?l=linux-raid=148232453107685=2 Suggested-by: NeilBrown Signed-off-by: Jack

Hello Beautiful,

2016-12-04 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Hello Beautiful,

2016-12-04 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am

Re: [PATCH/RFC] add "failfast" support for raid1/raid10.

2016-11-24 Thread Jack Wang
Hi Neil, 2016-11-24 5:47 GMT+01:00 NeilBrown <ne...@suse.com>: > On Sat, Nov 19 2016, Jack Wang wrote: > >> 2016-11-18 6:16 GMT+01:00 NeilBrown <ne...@suse.com>: >>> Hi, >>> >>> I've been sitting on these patches for a while because although the

Re: [PATCH/RFC] add "failfast" support for raid1/raid10.

2016-11-24 Thread Jack Wang
Hi Neil, 2016-11-24 5:47 GMT+01:00 NeilBrown : > On Sat, Nov 19 2016, Jack Wang wrote: > >> 2016-11-18 6:16 GMT+01:00 NeilBrown : >>> Hi, >>> >>> I've been sitting on these patches for a while because although they >>> solve a real probl

Re: [PATCH/RFC] add "failfast" support for raid1/raid10.

2016-11-18 Thread Jack Wang
sk 0, wo:0, o:1, dev:ibnbd46 I tried to port you patch from SLES[1], with the patchset, it reduce the time to ~30 seconds. I'm happy to see this feature upstream :) I will test again this new patchset. Cheers, Jack Wang

Re: [PATCH/RFC] add "failfast" support for raid1/raid10.

2016-11-18 Thread Jack Wang
dev:ibnbd46 I tried to port you patch from SLES[1], with the patchset, it reduce the time to ~30 seconds. I'm happy to see this feature upstream :) I will test again this new patchset. Cheers, Jack Wang

Re: "hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-11-17 Thread Jack Suter
[1.166882] hpsa :06:00.0: scsi 0:3:0:0: added RAID HP P410 controller SSDSmartPathCap- En- Exp=1 Cheers, Jack Suter On Thu, Nov 17, 2016, at 16:26, Don Brace wrote: > > -Original Message- > > From: Jack Suter [mailto:j...@suter.io] > &

Re: "hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-11-17 Thread Jack Suter
[1.166882] hpsa :06:00.0: scsi 0:3:0:0: added RAID HP P410 controller SSDSmartPathCap- En- Exp=1 Cheers, Jack Suter On Thu, Nov 17, 2016, at 16:26, Don Brace wrote: > > -Original Message- > > From: Jack Suter [mailto:j...@suter.io] > &

Re: "hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-11-17 Thread Jack Suter
Thanks from me as well for the patch. I've tested it on the problematic controller and it appears to be working. The hpsa driver isn't throwing any errors and hpacucli works as expected. Cheers, Jack Suter On Thu, Nov 17, 2016, at 06:17, Hannes Reinecke wrote: > On 11/16/2016 05:09 PM, brac

Re: "hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-11-17 Thread Jack Suter
Thanks from me as well for the patch. I've tested it on the problematic controller and it appears to be working. The hpsa driver isn't throwing any errors and hpacucli works as expected. Cheers, Jack Suter On Thu, Nov 17, 2016, at 06:17, Hannes Reinecke wrote: > On 11/16/2016 05:09 PM, brac

Re: Kernel regression introduced by "e1000e: Do not write lsc to ics in msi-x mode" and/or "e1000e: Do not read ICR in Other interrupt"

2016-11-03 Thread Jack Suter
> > Reverting these two commits resolves the Link is Down/Link is Up > > messages. This has been tested on about six servers so far and all have > > stopped reporting these link flaps. > > Are you able to revert either of the patches independently, I don't > recall if they were stand alone or

Re: Kernel regression introduced by "e1000e: Do not write lsc to ics in msi-x mode" and/or "e1000e: Do not read ICR in Other interrupt"

2016-11-03 Thread Jack Suter
> > Reverting these two commits resolves the Link is Down/Link is Up > > messages. This has been tested on about six servers so far and all have > > stopped reporting these link flaps. > > Are you able to revert either of the patches independently, I don't > recall if they were stand alone or

Kernel regression introduced by "e1000e: Do not write lsc to ics in msi-x mode" and/or "e1000e: Do not read ICR in Other interrupt"

2016-11-01 Thread Jack Suter
ide any additional information as necessary. While I do not understand what specifically causes the link flaps, they reliably begin occurring on the affected servers within a couple hours of boot. A snip of one such instance is below. Thank you for any assistance troubleshooting this. Kind regards, J

Kernel regression introduced by "e1000e: Do not write lsc to ics in msi-x mode" and/or "e1000e: Do not read ICR in Other interrupt"

2016-11-01 Thread Jack Suter
ide any additional information as necessary. While I do not understand what specifically causes the link flaps, they reliably begin occurring on the affected servers within a couple hours of boot. A snip of one such instance is below. Thank you for any assistance troubleshooting this. Kind regards, J

"hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-10-27 Thread Jack Suter
e dmesg output (grep -e hpsa -e sg) is below from both a 4.4.2 kernel (working) and 4.5.7 kernel (broken). Note the change in SCSI address from 0:3:0:0 to 0:0:0:0. Please let me know if you need me to do any testing to help resolve this. Jack Suter Kernel 4.4.2 Oct 27 15:28:07 hostname kernel:

"hpsa: Change SAS transport devices to bus 0." commit breaks hpacucli on old controller firmware

2016-10-27 Thread Jack Suter
e dmesg output (grep -e hpsa -e sg) is below from both a 4.4.2 kernel (working) and 4.5.7 kernel (broken). Note the change in SCSI address from 0:3:0:0 to 0:0:0:0. Please let me know if you need me to do any testing to help resolve this. Jack Suter Kernel 4.4.2 Oct 27 15:28:07 hostname kernel:

Re: [PATCH v2 2/8] IB/core: Replace semaphore sm_sem with completion

2016-10-25 Thread Jack Wang
Hi Binoy, 2016-10-25 17:08 GMT+02:00 Binoy Jayan <binoy.ja...@linaro.org>: > On 25 October 2016 at 18:13, Jack Wang <xjtu...@gmail.com> wrote: >> Hi Binoy, >> >> snip >>> >>> port->ib_dev = device; >>>

<    1   2   3   4   5   6   7   8   9   >