Question from developers

2024-05-31 Thread Martin Juve
benefited from our services. We have a complete technology team with experience in virtually every programming language. Do you have a need for support in the field of cloud services? Best regards Martin Juve ___ devel mailing list de

Hello,

2022-05-24 Thread Martin Baker
Morning Dear, How are you, Please my previous mail you did not reply it ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH] staging: rtl8188eu: use netdev routines for private data

2021-03-21 Thread Martin Kaiser
This driver implements its own routines to allocate, access and free the private data of its net_device. Use the functionality from the networking core instead. Signed-off-by: Martin Kaiser --- drivers/staging/rtl8188eu/core/rtw_debug.c| 8 +- drivers/staging/rtl8188eu/core/rtw_pwrctrl.c

[PATCH] staging: rtl8188eu: Add Edimax EW-7811UN V2 to device table

2021-02-04 Thread Martin Kaiser
The Edimax EW-7811UN V2 uses an RTL8188EU chipset and works with this driver. Signed-off-by: Martin Kaiser --- drivers/staging/rtl8188eu/os_dep/usb_intf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/rtl8188eu/os_dep/usb_intf.c b/drivers/staging/rtl8188eu/os_dep

[PATCH] staging: rtl8723bs: fix rtw_cfg80211_monitor_if_xmit_entry's return value

2021-01-31 Thread Martin Kaiser
A netdev xmit function should return NETDEV_TX_OK or NETDEV_TX_BUSY. Signed-off-by: Martin Kaiser --- drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c b/drivers/staging

[PATCH] staging: rtl8188eu: fix rtw_xmit_entry's return value

2021-01-22 Thread Martin Kaiser
A netdev xmit function should return NETDEV_TX_OK or NETDEV_TX_BUSY. Signed-off-by: Martin Kaiser --- drivers/staging/rtl8188eu/os_dep/xmit_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8188eu/os_dep/xmit_linux.c b/drivers/staging/rtl8188eu

Re: (subset) [PATCH 000/141] Fix fall-through warnings for Clang

2020-12-07 Thread Martin K. Petersen
eak/goto/return/fallthrough statements instead of just > letting the code fall through to the next case. > > [...] Applied to 5.11/scsi-queue, thanks! [054/141] target: Fix fall-through warnings for Clang https://git.kernel.org/mkp/scsi/c/492096ecfa39 -- Martin K. Petersen

Re: [PATCH v3 3/6] ARM: dts: sun8i: v3s: Add node for system control

2020-12-03 Thread Martin Cerveny
Hello. On Thu, 3 Dec 2020, Chen-Yu Tsai wrote: Hi, On Mon, Nov 16, 2020 at 8:57 PM Martin Cerveny wrote: Allwinner V3s has system control and SRAM C1 region similar to H3. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 14 ++ 1 file changed, 14

Re: [PATCH 000/141] Fix fall-through warnings for Clang

2020-11-30 Thread Martin K. Petersen
Gustavo, > This series aims to fix almost all remaining fall-through warnings in > order to enable -Wimplicit-fallthrough for Clang. Applied 20-22,54,120-124 to 5.11/scsi-staging, thanks. -- Martin K. Petersen Oracle Linux Engin

[PATCH v3 1/6] media: cedrus: Register all codecs as capability

2020-11-16 Thread Martin Cerveny
All codecs should have capabilities. For example "Allwinner V3s" does not support "MPEG2". Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c | 22 +-- drivers/staging/media/sunxi/cedrus/cedrus.h | 2 ++ .../stagin

[PATCH v3 4/6] media: cedrus: Add support for V3s

2020-11-16 Thread Martin Cerveny
V3s video engine runs at lower speed and support video decoder for H.264 and JPEG/MJPEG only. Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers

[PATCH v3 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-11-16 Thread Martin Cerveny
ted by V3s, JPEG/MJPEG still unimplemented, encoder unimplemented best regards, Martin Changes since v2: - updated/rebased to https://git.linuxtv.org/hverkuil/media_tree.git/?h=for-v5.11e - some parts of patches implemeted by others - updated R40 Changes since v1: - patch 0005 rename - add

[PATCH v3 2/6] dt-bindings: sram: allwinner, sun4i-a10-system-control: Add V3s compatibles

2020-11-16 Thread Martin Cerveny
Allwinner V3s has system control similar to that in H3. Add compatibles for system control with SRAM C1 region. Signed-off-by: Martin Cerveny --- .../bindings/sram/allwinner,sun4i-a10-system-control.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree

[PATCH v3 5/6] dt-bindings: media: cedrus: Add V3s compatible

2020-11-16 Thread Martin Cerveny
Allwinner V3s SoC contains video engine. Add compatible for it. Signed-off-by: Martin Cerveny --- .../bindings/media/allwinner,sun4i-a10-video-engine.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/media/allwinner,sun4i-a10-video-engine.yaml

[PATCH v3 6/6] ARM: dts: sun8i: v3s: Add video engine node

2020-11-16 Thread Martin Cerveny
Allwinner V3S SoC has a video engine. Add a node for it. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index 70193512c222..e8f304125e2d 100644

[PATCH v3 3/6] ARM: dts: sun8i: v3s: Add node for system control

2020-11-16 Thread Martin Cerveny
Allwinner V3s has system control and SRAM C1 region similar to H3. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 14 ++ 1 file changed, 14 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index 0c7341676921

Re: [PATCH v2 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-11-16 Thread Martin Cerveny
Hello. On Mon, 16 Nov 2020, Martin Cerveny wrote: On Mon, 16 Nov 2020, Hans Verkuil wrote: On 15/11/2020 19:59, Martin Cerveny wrote: On Thu, 5 Nov 2020, Hans Verkuil wrote: On 12/09/2020 16:30, Martin Cerveny wrote: First patch extends cedrus capability to all decoders because V3s missing

Re: [PATCH v2 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-11-16 Thread Martin Cerveny
On Mon, 16 Nov 2020, Hans Verkuil wrote: On 15/11/2020 19:59, Martin Cerveny wrote: Hello. On Thu, 5 Nov 2020, Hans Verkuil wrote: Hi Martin, On 12/09/2020 16:30, Martin Cerveny wrote: First patch extends cedrus capability to all decoders because V3s missing MPEG2 decoder. Next two

Re: [PATCH v2 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-11-15 Thread Martin Cerveny
Hello. On Thu, 5 Nov 2020, Hans Verkuil wrote: Hi Martin, On 12/09/2020 16:30, Martin Cerveny wrote: First patch extends cedrus capability to all decoders because V3s missing MPEG2 decoder. Next two patches add system control node (SRAM C1) and next three patches add support for Cedrus VPU

[PATCH v2 1/6] media: cedrus: Register all codecs as capability

2020-09-12 Thread Martin Cerveny
All codecs should have capabilities. For example "Allwinner V3s" does not support "MPEG2". Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c| 18 +- drivers/staging/media/sunxi/cedrus/cedrus.h| 2 ++ .../stagin

[PATCH v2 2/6] dt-bindings: sram: allwinner, sun4i-a10-system-control: Add V3s compatibles

2020-09-12 Thread Martin Cerveny
Allwinner V3s has system control similar to that in H3. Add compatibles for system control with SRAM C1 region. Signed-off-by: Martin Cerveny --- .../bindings/sram/allwinner,sun4i-a10-system-control.yaml | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/devicetree

[PATCH v2 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-09-12 Thread Martin Cerveny
- add swap to swapout other processes - decrease buffers in v4l2-request-test (.buffers_count from 16 to 6) Only H.264 decoder working - MPEG and H.265 unsupported by V3s, JPEG/MJPEG still unimplemented, encoder unimplemented best regards, Martin Changes since v1: - patch 0005 rename - added testing d

[PATCH v2 3/6] ARM: dts: sun8i: v3s: Add node for system control

2020-09-12 Thread Martin Cerveny
Allwinner V3s has system control and SRAM C1 region similar to H3. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 23 +++ 1 file changed, 23 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index

[PATCH v2 5/6] dt-bindings: media: cedrus: Add V3s compatible

2020-09-12 Thread Martin Cerveny
Allwinner V3s SoC contains video engine. Add compatible for it. Signed-off-by: Martin Cerveny --- .../bindings/media/allwinner,sun4i-a10-video-engine.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/media/allwinner,sun4i-a10-video-engine.yaml

[PATCH v2 4/6] media: cedrus: Add support for V3s

2020-09-12 Thread Martin Cerveny
V3s video engine runs at lower speed and support video decoder for H.264 and JPEG/MJPEG only. Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers

[PATCH v2 6/6] ARM: dts: sun8i: v3s: Add video engine node

2020-09-12 Thread Martin Cerveny
Allwinner V3S SoC has a video engine. Add a node for it. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index 3f18866fb37b..3fb01dc1a9ba 100644

Re: [PATCH 00/29] treewide: Convert comma separated statements

2020-09-08 Thread Martin K. Petersen
b: zstd: Avoid comma separated statements (no commit info) [27/29] ipv6: fib6: Avoid comma separated statements (no commit info) [28/29] sunrpc: Avoid comma separated statements (no commit info) [29/29] tools: Avoid comma separated statements (no commit info) --

Re: [PATCH 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-09-08 Thread Martin Cerveny
Hello. On Tue, 8 Sep 2020, Maxime Ripard wrote: On Fri, Sep 04, 2020 at 10:01:06PM +0200, Martin Cerveny wrote: First patch extends cedrus capability to all decoders because V3s missing MPEG2 decoder. Next two patches add system control node (SRAM C1) and next three patches add support

[PATCH 2/6] dt-bindings: sram: allwinner, sun4i-a10-system-control: Add V3s compatibles

2020-09-04 Thread Martin Cerveny
Allwinner V3s has system control similar to that in H3. Add compatibles for system control with SRAM C1 region. Signed-off-by: Martin Cerveny --- .../bindings/sram/allwinner,sun4i-a10-system-control.yaml | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/devicetree

[PATCH 3/6] ARM: dts: sun8i: v3s: Add node for system control

2020-09-04 Thread Martin Cerveny
Allwinner V3s has system control and SRAM C1 region similar to H3. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 23 +++ 1 file changed, 23 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index e5312869c

[PATCH 6/6] ARM: dts: sun8i: v3s: Add video engine node

2020-09-04 Thread Martin Cerveny
Allwinner V3S SoC has a video engine. Add a node for it. Signed-off-by: Martin Cerveny --- arch/arm/boot/dts/sun8i-v3s.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi index 3f18866fb..3fb01dc1a 100644

[PATCH 5/6] media: allwinner, sun4i-a10-video-engine: Add V3s compatible

2020-09-04 Thread Martin Cerveny
Allwinner V3s SoC contains video engine. Add compatible for it. Signed-off-by: Martin Cerveny --- .../bindings/media/allwinner,sun4i-a10-video-engine.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/media/allwinner,sun4i-a10-video-engine.yaml

[PATCH 0/6] ARM: dts: sun8i: v3s: Enable video decoder

2020-09-04 Thread Martin Cerveny
First patch extends cedrus capability to all decoders because V3s missing MPEG2 decoder. Next two patches add system control node (SRAM C1) and next three patches add support for Cedrus VPU. Best regards, Martin Martin Cerveny (6): media: cedrus: Register all codecs as capability dt

[PATCH 1/6] media: cedrus: Register all codecs as capability

2020-09-04 Thread Martin Cerveny
All codecs should have capabilities. For example "Allwinner V3s" does not support "MPEG2". Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c| 18 +- drivers/staging/media/sunxi/cedrus/cedrus.h| 2 ++ .../stagin

[PATCH 4/6] media: cedrus: Add support for V3s

2020-09-04 Thread Martin Cerveny
V3s video engine runs at lower speed and support video decoder for H.264 and JPEG/MJPEG only. Signed-off-by: Martin Cerveny --- drivers/staging/media/sunxi/cedrus/cedrus.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers

Re: nxp imx8m CSI drivers

2020-07-28 Thread Martin Kepplinger
On 09.07.20 11:32, Martin Kepplinger wrote: > hi linux-media people, > > TL-DR: when exactly is "sd->entity.function == MEDIA_ENT_F_VID_MUX"? > > > I try to use the camera on our librem5-devkit (imx8mq): I try to use > only mainline drivers except for "mx

nxp imx8m CSI drivers

2020-07-09 Thread Martin Kepplinger
l and if there's anything that comes to your mind. thanks a lot, martin ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-26 Thread Martin Blumenstingl
the sdio controller to access the internal SD card (and at the time of writing the MMC subsystem in Linux doesn't support two different cards with one MMC controller). So only because of your email I did a quick test on the Endless Mini. Best regards, Martin ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-19 Thread Martin Blumenstingl
whether GPIOX_11 is HIGH or LOW. The RTL8723BS driver currently does not manage any GPIOs. Martin [0] https://github.com/torvalds/linux/blob/c477ebe21fabe0010a2ed324ce3a1762c757d867/Documentation/devicetree/bindings/mmc/mmc-pwrseq-simple.txt [1] https://github.com/endlessm/linux-meson/b

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-18 Thread Martin Blumenstingl
Hi Tobias, On Mon, May 18, 2020 at 7:59 AM Tobias Baumann <017623705...@o2online.de> wrote: > > hi martin > > i activate your patch ; wlan works ; also with only edit GPIOX_11 wlan > works > > its now GPIO-402 out high ACTIVE_LOW ( 3.3V on pin12) great, thank you f

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-17 Thread Martin Blumenstingl
Hi Tobias, On Sun, May 17, 2020 at 11:05 PM Tobias Baumann <017623705...@o2online.de> wrote: > > hi martin > > sorry for cc -problem it was my fault in thunderbird > > thanks for dtb file but this file has problem kernel stop with > > [6.122092] mmc0: new high s

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-17 Thread Martin Blumenstingl
Hi Tobias, (adding back the original Cc list since that got lost at some point. please keep them included) On Sun, May 17, 2020 at 9:57 PM Tobias Baumann <017623705...@o2online.de> wrote: > > hi Martin > > > i know what you mean with many modules from Arduino sensor module

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-16 Thread Martin Blumenstingl
Hi Tobias, On Thu, May 7, 2020 at 10:57 AM Tobias Baumann <017623705...@o2online.de> wrote: > > Hello Community > > I was referred to you by Martin. I have an older Android TV box that > runs for over 3 years with Armbian Linux (Debian Jessie Headless Kernel > 3.10.

[PATCH] binder: fix log spam for existing debugfs file creation.

2020-01-10 Thread Martin Fuzzey
d boot (17 such messages during boot on my system). Fix this by checking if we already know the PID and only create the debugfs entry for the first context per PID. Do the same thing for binderfs for symmetry. Signed-off-by: Martin Fuzzey --- drivers/android/bin

Re: [PATCH 4/4] [RFC] staging/net: move AF_X25 into drivers/staging

2019-12-10 Thread Martin Schiller
On 2019-12-10 14:51, Arnd Bergmann wrote: On Tue, Dec 10, 2019 at 9:59 AM Martin Schiller wrote: On 2019-12-09 20:26, Arnd Bergmann wrote: > On Mon, Dec 9, 2019 at 7:29 PM David Miller > wrote: >> >> From: Arnd Bergmann >> Date: Mon, 9 Dec 2019 16:12:56 +0100 >

Re: [PATCH 4/4] [RFC] staging/net: move AF_X25 into drivers/staging

2019-12-10 Thread Martin Schiller
Ok, makes sense. Looking back in the history, I also see other bugfixes from the same author. Adding Martin Schiller to Cc: for a few questions: - What hardware are you using for X.25? I would say that X.25 is (at least in Germany) not dead yet. For example, it is still used in the rai

Re: [PATCH v2 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
e instead of using the struct field directly seems to improve readability a bit. Otherwise: p_fs->vol_utbl[col_index][get_row_index(index)] = uni; I assume, in cases like this, from a coding style perspective, the following approach is preferred: row_i

Re: [PATCH 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
> This patch failed to apply. Please fix it up and resend it as a new > version. I have rebased the patch against the branch "staging-testing" of the tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git And sent the new version. Thanks,

[PATCH v2 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
Replace expressions of the form: kmalloc(count * size, GFP_KERNEL); With: kmalloc_array(count, size, GFP_KERNEL); Signed-off-by: Roi Martin --- v2 changes: This patch has been rebased against the branch "staging-testing" of the tree: https://git.kernel.org/pub/scm/li

[PATCH 2/6] staging: exfat: make alignment match open parenthesis

2019-10-29 Thread Roi Martin
Fix checkpatch.pl warning: CHECK: Alignment should match open parenthesis Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_core.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/exfat/exfat_core.c b/drivers/staging/exfat

[PATCH 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-29 Thread Roi Martin
Replace expressions of the form: kmalloc(count * size, GFP_KERNEL); With: kmalloc_array(count, size, GFP_KERNEL); Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_core.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/exfat

[PATCH 5/6] staging: exfat: avoid multiple assignments

2019-10-29 Thread Roi Martin
Fix checkpatch.pl warning: CHECK: multiple assignments should be avoided Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_core.c | 3 +- drivers/staging/exfat/exfat_super.c | 90 +++-- 2 files changed, 73 insertions(+), 20 deletions(-) diff --git

[PATCH 1/6] staging: exfat: remove unnecessary parentheses

2019-10-29 Thread Roi Martin
Fix checkpatch.pl warning: CHECK: Unnecessary parentheses around ... Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_core.c | 24 drivers/staging/exfat/exfat_super.c | 44 ++--- 2 files changed, 34 insertions(+), 34 deletions(-) diff

[PATCH 3/6] staging: exfat: remove unnecessary new line in if condition

2019-10-29 Thread Roi Martin
Fix checkpatch.pl warning: CHECK: Logical continuations should be on the previous line Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/exfat/exfat_core.c b/drivers/staging/exfat

[PATCH 0/6] staging: exfat: fix multiple coding-style issues

2019-10-29 Thread Roi Martin
Fix multiple coding-style issues reported by the checkpatch.pl script in the exfat module. Roi Martin (6): staging: exfat: remove unnecessary parentheses staging: exfat: make alignment match open parenthesis staging: exfat: remove unnecessary new line in if condition staging: exfat

[PATCH 4/6] staging: exfat: replace printk(KERN_INFO ...) with pr_info()

2019-10-29 Thread Roi Martin
Fix checkpatch.pl warning: WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: Roi Martin --- drivers/staging/exfat/exfat_super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH] Staging: isdn/gigaset : Fix bare unsigned warnings and trailing lines errors

2019-08-22 Thread Martin Tomes
There are many bare use of unsigned warnings and trailing statements should be on next line errors from checkpatch.pl script. Change the code by adding 'unsigned int'. Move 'break' statement of 'switch' command to next line. Signed-off-by: Martin Tomes --- drivers/staging/isdn/gigaset/usb

Re: [PATCH 2/4] lpfc: reduce stack size with CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE

2019-07-11 Thread Martin K. Petersen
However, now > they each get their own copy, which leads to a huge increase in stack > usage as seen from the compiler warning: Applied to 5.3/scsi-fixes. Thank you! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriv

Re: [PATCH V5 00/16] use sg helper to operate scatterlist

2019-06-24 Thread Martin K. Petersen
-queue and 5.3/scsi-sg. -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH V5 00/16] use sg helper to operate scatterlist

2019-06-19 Thread Martin K. Petersen
Bart, > Do you perhaps plan to push out these patches at a later time? It > seems like that branch has not been updated recently: I had a test failure on this end, that's why I didn't push. Appears to be hardware-related, though. Still looking into it. -- Martin K. Petersen Oracle

Re: [PATCH V5 00/16] use sg helper to operate scatterlist

2019-06-18 Thread Martin K. Petersen
Oh, and I held back the rtsx patch due to lack of reviews. But since that driver is in staging I'm not too worried about it. Hope we can get the fix for that reviewed and merged soon. -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list

staging: rtl8188eu: fix bad indentation for conditional statement

2019-02-18 Thread Stephen Martin
Fixed else block indentation Signed-off-by: Stephen Martin --- drivers/staging/rtl8188eu/core/rtw_xmit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_xmit.c b/drivers/staging/rtl8188eu/core/rtw_xmit.c index 3b1ccd138c3f..1723a47a96b4

FINANCIAL MANAGEMENT AND ADVISORY SERVICES LIMITED 1

2019-02-03 Thread Mr. Martin Jones
can be invested in tranches of US $100M or a tranche that is suitable for the portfolio manager. If you have Financial Management abilities, credible project in need of funding or existing business requiring expansion, your feedback would be appreciated. Sincerely, Martin Jones Managing

FINANCIAL MANAGEMENT AND ADVISORY SERVICES LIMITED 1ม

2019-01-30 Thread Mr. Martin Jones
can be invested in tranches of US $100M or a tranche that is suitable for the portfolio manager. If you have Financial Management abilities, credible project in need of funding or existing business requiring expansion, your feedback would be appreciated. Sincerely, Martin Jones Managing

FINANCIAL MANAGEMENT AND ADVISORY SERVICES LIMITED 1

2019-01-29 Thread Mr. Martin Jones
can be invested in tranches of US $100M or a tranche that is suitable for the portfolio manager. If you have Financial Management abilities, credible project in need of funding or existing business requiring expansion, your feedback would be appreciated. Sincerely, Martin Jones Managing

[PATCH] staging: rtw_ieee80211: fix constant comparison warning

2019-01-23 Thread Stephen Martin
Fixed comparison on right side of test warnings. Signed-off-by: Stephen Martin --- drivers/staging/rtl8188eu/core/rtw_ieee80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_ieee80211.c b/drivers/staging/rtl8188eu/core

Re: [PATCH 1/1] scsi: storvsc: Always use blk-mq

2018-12-19 Thread Martin K. Petersen
e in 4.21 so this patch isn't needed. -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Obědové karty

2018-12-13 Thread Martin Kaspar
hodnota prostředků na kartě znamená úsporu 34 % při odvodech na sociálním a zdravotním pojištění zaměstnance a na dani z příjmu. Navíc je příspěvek na obědovou kartu zaměstnanci o 48 % výhodnější než příspěvek do mzdy. Mohli bych Vám poskytnout více informací o naší obědové kartě? Martin

Obědové karty

2018-12-13 Thread Martin Kaspar
hodnota prostředků na kartě znamená úsporu 34 % při odvodech na sociálním a zdravotním pojištění zaměstnance a na dani z příjmu. Navíc je příspěvek na obědovou kartu zaměstnanci o 48 % výhodnější než příspěvek do mzdy. Mohli bych Vám poskytnout více informací o naší obědové kartě? Martin

Obědové karty

2018-12-13 Thread Martin Kaspar
hodnota prostředků na kartě znamená úsporu 34 % při odvodech na sociálním a zdravotním pojištění zaměstnance a na dani z příjmu. Navíc je příspěvek na obědovou kartu zaměstnanci o 48 % výhodnější než příspěvek do mzdy. Mohli bych Vám poskytnout více informací o naší obědové kartě? Martin

Re: [PATCH] scsi: storvsc: Fix a race in sub-channel creation that can cause panic

2018-11-28 Thread Martin K. Petersen
gt; because at the beginning of vmbus_open() we checked newchannel->state so > only one path could succeed, and the other would return with -EINVAL. Applied to 4.20/scsi-fixes. Thank you! -- Martin K. Petersen Oracle Linux Engineering _

Re: [PATCH] scsi: vmw_pscsi: Rearrange code to avoid multiple calls to free_irq during unload

2018-11-28 Thread Martin K. Petersen
been moved out of pvscsi_release_resources. Applied to 4.20/scsi-fixes, thanks! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 1/1] scsi: storvsc: Avoid allocating memory for temp cpumasks

2018-05-18 Thread Martin K. Petersen
Michael, > Current code allocates 240 Kbytes (in typical configs) for each > synthetic SCSI controller to use as temp cpumask variables. Recode to > avoid needing the temp cpumask variables and remove the memory > allocation. Applied to 4.18/scsi-queue. Thanks! -- Martin

Re: [PATCH v2] storvsc: Set up correct queue depth values for IDE devices

2018-04-20 Thread Martin K. Petersen
Long, > If num_cpus=1, we don't have any sub channels. > > The host offers one sub channel for VM with 5 CPUs, after that it offers > an additional sub channel every 4 CPUs. > > The primary channel is always offered. Applied to 4.17/scsi-fixes. Thanks! -- Martin K. Petersen

Re: [Patch v2] Storvsc: Select channel based on available percentage of ring buffer to write

2018-04-20 Thread Martin K. Petersen
to take advantage of cache locality. Applied to 4.18/scsi-queue. Thank you! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH v2] storvsc: Set up correct queue depth values for IDE devices

2018-04-18 Thread Martin K. Petersen
Long, > Can you take a look at the following patch? >> > + max_sub_channels = >> > + (num_cpus - 1) / storvsc_vcpus_per_sub_channel; What happens if num_cpus = 1? -- Martin K. Petersen Oracle Linux Engineering _

Re: [Resend Patch 1/3] Vmbus: Add function to report available ring buffer to write in total ring size percentage

2018-04-09 Thread Martin K. Petersen
i-queue. Thanks! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [Resend Patch 1/3] Vmbus: Add function to report available ring buffer to write in total ring size percentage

2018-03-28 Thread Martin K. Petersen
ed an ack from davem. -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 1/1] scsi: storvsc: Increase cmd_per_lun for higher speed devices

2018-02-06 Thread Martin K. Petersen
Michael, > Increase cmd_per_lun to allow more I/Os in progress per device, > particularly for NVMe's. The Hyper-V host side can handle the higher > count with no issues. Applied to 4.16/scsi-fixes. Thank you! -- Martin K. Petersen Oracle Linux En

Re: [PATCH 1/1] scsi: storvsc: Spread interrupts when picking a channel for I/O requests

2018-02-06 Thread Martin K. Petersen
ode, skewing > the interrupt load to that CPU. Applied to 4.16/scsi-fixes. Thanks! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 1/1] scsi: storvsc: Increase cmd_per_lun for higher speed devices

2018-01-30 Thread Martin K. Petersen
> Increase cmd_per_lun to allow more I/Os in progress per device, > particularly for NVMe's. The Hyper-V host side can handle the > higher count with no issues. Long/KY/Cathy/Stephen: Please ack/review Michael's patches. -- Martin K. Petersen Oracle Linux En

Re: [PATCH] scsi: storvsc: missing error code in storvsc_probe()

2018-01-16 Thread Martin K. Petersen
Dan, > We should set the error code if fc_remote_port_add() fails. Applied to 4.16/scsi-queue, thanks! -- Martin K. Petersen Oracle Linux Engineering ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.

Re: [PATCH] scsi: storvsc: Fix scsi_cmd error assignments in storvsc_handle_error

2017-12-20 Thread Martin K. Petersen
_probe_async will > wait forever for its I/O to complete while holding > scsi_sd_probe_domain. > > Also returning the default error of DID_TARGET_FAILURE causes > multipath to not retry the I/O resulting in applications receiving I/O > errors before a failover can occur. Applied to 4.15/scsi

[PATCH v4 4/5] staging: rtl8712: style fix unneeded else

2017-12-19 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl where an unnecessary else is used. It fixes the following checkpatch.pl warning: WARNING: else is not generally useful after a break or return Signed-off-by: Martin Homuth <mar...@martinhomuth

[PATCH v4 0/5] staging: rtl8712: fix several checkpatch style issues

2017-12-19 Thread Martin Homuth
- missed one line length warning ([1/5]) v4: - fix remaining reference simplifications ([2/5]) Martin Homuth (5): staging: rtl8712: style fix over 80 characters warnings staging: rtl8712: style fix multiple line dereferences staging: rtl8712: style fix indentation staging: rtl8712: style

[PATCH v4 1/5] staging: rtl8712: style fix over 80 characters warnings

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl by reducing the characters per line to under 80. It fixes the following checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

[PATCH v4 5/5] staging: rtl8712: style fix returned error code

2017-12-19 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl regarding the returned error code. It fixes the following checkpatch.pl warning: WARNING: ENOSYS means 'invalid syscall nr' and nothing else Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- d

[PATCH v4 2/5] staging: rtl8712: style fix multiple line dereferences

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl related to dereferencing over multiple lines. It fixes the following checkpatch.pl warning: WARNING: Avoid multiple line dereference - prefer %s Signed-off-by: Martin Homuth <mar...@martinhomuth

[PATCH v4 3/5] staging: rtl8712: style fix indentation

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl related to indentation. It fixes the following checkpatch.pl warning: WARNING: suspect code indent for conditional statements Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

Re: [PATCH v3 2/5] staging: rtl8712: style fix multiple line dereferences

2017-12-19 Thread Martin Homuth
On 12/19/2017 05:41 PM, Joe Perches wrote: > On Tue, 2017-12-19 at 17:32 +0100, Martin Homuth wrote: >> This patch fixes various coding style issues in the rtl8712 module as >> noted by checkpatch.pl related to dereferencing over multiple lines. > [] >> diff --git a

[PATCH v3 1/5] staging: rtl8712: style fix over 80 characters warnings

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl by reducing the characters per line to under 80. It fixes the following checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

[PATCH v3 4/5] staging: rtl8712: style fix unneeded else

2017-12-19 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl where an unnecessary else is used. It fixes the following checkpatch.pl warning: WARNING: else is not generally useful after a break or return Signed-off-by: Martin Homuth <mar...@martinhomuth

[PATCH v3 3/5] staging: rtl8712: style fix indentation

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl related to indentation. It fixes the following checkpatch.pl warning: WARNING: suspect code indent for conditional statements Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

[PATCH v3 2/5] staging: rtl8712: style fix multiple line dereferences

2017-12-19 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl related to dereferencing over multiple lines. It fixes the following checkpatch.pl warning: WARNING: Avoid multiple line dereference - prefer %s Signed-off-by: Martin Homuth <mar...@martinhomuth

[PATCH v3 5/5] staging: rtl8712: style fix returned error code

2017-12-19 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl regarding the returned error code. It fixes the following checkpatch.pl warning: WARNING: ENOSYS means 'invalid syscall nr' and nothing else Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- d

[PATCH v3 0/5] staging: rtl8712: fix several checkpatch style issues

2017-12-19 Thread Martin Homuth
- missed one line length warning ([1/5]) Martin Homuth (5): staging: rtl8712: style fix over 80 characters warnings staging: rtl8712: style fix multiple line dereferences staging: rtl8712: style fix indentation staging: rtl8712: style fix unneeded else staging: rtl8712: style fix returned

[PATCH v2 5/5] staging: rtl8712: style fix returned error code

2017-12-18 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl regarding the returned error code. It fixes the following checkpatch.pl warning: WARNING: ENOSYS means 'invalid syscall nr' and nothing else Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- d

[PATCH v2 3/5] staging: rtl8712: style fix indentation

2017-12-18 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl related to indentation. It fixes the following checkpatch.pl warning: WARNING: suspect code indent for conditional statements Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

[PATCH v2 4/5] staging: rtl8712: style fix unneeded else

2017-12-18 Thread Martin Homuth
This patch fixes a coding style issues in the rtl8712 module as noted by checkpatch.pl where an unnecessary else is used. It fixes the following checkpatch.pl warning: WARNING: else is not generally useful after a break or return Signed-off-by: Martin Homuth <mar...@martinhomuth

[PATCH v2 1/5] staging: rtl8712: style fix over 80 characters warnings

2017-12-18 Thread Martin Homuth
This patch fixes various coding style issues in the rtl8712 module as noted by checkpatch.pl by reducing the characters per line to under 80. It fixes the following checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Martin Homuth <mar...@martinhomuth.de> --- drivers/s

  1   2   3   >