[PATCH] ion_system_heap: support X86 archtecture

2019-09-29 Thread jun . zhang
From: zhang jun we see tons of warning like: [ 45.846872] x86/PAT: NDK MediaCodec_:3753 map pfn RAM range req write-combining for [mem 0x1e7a8-0x1e7a87fff], got write-back [ 45.848827] x86/PAT: .vorbis.decoder:4088 map pfn RAM range req write-combining for [mem 0x1e7a58000-0x1e7a58fff],

Re: [PATCH 3/3] Staging: exfat: exfat_super.c Fixed coding style issues.

2019-09-29 Thread Greg KH
On Sat, Sep 28, 2019 at 07:21:19PM -0500, Jesse Barton wrote: > Fixed Coding Style issues You need to be specific as to _what_ exactly you did here. What you wrote is very vague :) thanks, greg k-h ___ devel mailing list de...@linuxdriverproject.org

Re: [PATCH 2/3] Staging: exfat: exfat_super.c: fixed multiple coding style issues with camelcase and parentheses

2019-09-29 Thread Greg KH
On Sat, Sep 28, 2019 at 07:22:33PM -0500, Jesse Barton wrote: > Fixed coding style issues with camelcase on functions and various parentheses > that were not needed Please wrap your changelog text properly. Only do one "type" of thing per patch, this should be two different ones. thanks, greg

[driver-core:debugfs_cleanup 3/13] drivers/gpu/drm/drm_mipi_dbi.c:1311:6: error: conflicting types for 'mipi_dbi_debugfs_init'

2019-09-29 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git debugfs_cleanup head: 2af10af50dae1d4154ed0053ac8bd15d773b86e4 commit: 2f52245a70e7911407dfbea078f1a012764f8a42 [3/13] drm: make .debugfs_init and drm_debugfs_create_files() return void config: sparc64-allmodconfig

***Spam*** IRREVOCABLE COMPENSATION PAYMENT OF US$750, 000.00 VIA ATM VISA CARD

2019-09-29 Thread Kiba Ibrahim
-- Dear Beneficiary IRREVOCABLE COMPENSATION PAYMENT OF US$750,000.00 VIA ATM VISA CARD We have actually been authorized by the newly appointed Minister of finance and the governing body of the United Nations Monetary Unit to investigate the unnecessary delay on your payment, recommended

[PATCH v2 0/6] media: cedrus: h264: Support multi-slice frames

2019-09-29 Thread Jernej Skrabec
This series adds support for decoding multi-slice H264 frames along with support for V4L2_DEC_CMD_FLUSH and V4L2_BUF_FLAG_M2M_HOLD_CAPTURE_BUF. Code was tested by modified ffmpeg, which can be found here: https://github.com/jernejsk/FFmpeg, branch mainline-test It has to be configured with at

[PATCH v2 2/6] videodev2.h: add V4L2_DEC_CMD_FLUSH

2019-09-29 Thread Jernej Skrabec
From: Hans Verkuil Add this new V4L2_DEC_CMD_FLUSH decoder command and document it. Reviewed-by: Boris Brezillon Reviewed-by: Alexandre Courbot Signed-off-by: Hans Verkuil [Adjusted description] Signed-off-by: Jernej Skrabec --- Documentation/media/uapi/v4l/vidioc-decoder-cmd.rst | 10

[PATCH v2 5/6] media: cedrus: h264: Support multiple slices per frame

2019-09-29 Thread Jernej Skrabec
With recent changes, support for decoding multi-slice frames can be easily added now. Signal VPU if current slice is first in frame or not and add information about first macroblock coordinates. Signed-off-by: Jernej Skrabec --- drivers/staging/media/sunxi/cedrus/cedrus_h264.c | 11 ++-

[PATCH v2 4/6] media: cedrus: Detect first slice of a frame

2019-09-29 Thread Jernej Skrabec
When codec supports multiple slices in one frame, VPU has to know when first slice of each frame is being processed, presumably to correctly clear/set data in auxiliary buffers. Add first_slice field to cedrus_run structure and set it according to timestamps of capture and output buffers. If

Re: [PATCH] ion_system_heap: support X86 archtecture

2019-09-29 Thread Laura Abbott
On 9/29/19 3:28 AM, jun.zh...@intel.com wrote: From: zhang jun we see tons of warning like: [ 45.846872] x86/PAT: NDK MediaCodec_:3753 map pfn RAM range req write-combining for [mem 0x1e7a8-0x1e7a87fff], got write-back [ 45.848827] x86/PAT: .vorbis.decoder:4088 map pfn RAM range req

[PATCH v2 3/6] media: v4l2-mem2mem: add stateless_(try_)decoder_cmd ioctl helpers

2019-09-29 Thread Jernej Skrabec
These helpers are used by stateless codecs when they support multiple slices per frame and hold capture buffer flag is set. It's expected that all such codecs will use this code. Signed-off-by: Jernej Skrabec --- drivers/media/v4l2-core/v4l2-mem2mem.c | 35 ++

[PATCH v2 6/6] media: cedrus: Add support for holding capture buffer

2019-09-29 Thread Jernej Skrabec
When frame contains multiple slices and driver works in slice mode, it's more efficient to hold capture buffer in queue until all slices of a same frame are decoded. Add support for that to Cedrus driver by exposing and implementing V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF capability.

[driver-core:debugfs_cleanup 3/13] drivers/gpu/drm/tiny/hx8357d.c:200:19: error: initialization of 'void (*)(struct drm_minor *)' from incompatible pointer type 'int (*)(struct drm_minor *)'

2019-09-29 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git debugfs_cleanup head: 2af10af50dae1d4154ed0053ac8bd15d773b86e4 commit: 2f52245a70e7911407dfbea078f1a012764f8a42 [3/13] drm: make .debugfs_init and drm_debugfs_create_files() return void config: nds32-allmodconfig

[PATCH 2/3] Staging: exfat: exfat_super.c: fixed multiple coding style issues with camelcase and parentheses

2019-09-29 Thread Jesse Barton
Changed Function Names: ffsGetVolInfo -> ffs_get_vol_info ffsLookupFile -> ffs_lookup_file ffsCreateFile -> ffs_create_file ffsReadFile -> ffs_read_file ffsWriteFile -> ffs_write_file ffsTruncateFile -> ffs_truncate_file ffsRemoveFile -> ffs_remove_file ffsMoveFile -> ffs_move_file ffsSetAttr ->

[PATCH 1/3] Staging: exfat: exfat_super.c: fixed camelcase coding style issue

2019-09-29 Thread Jesse Barton
Changed function names: ffsUmountVol to ffs_umount_vol ffsMountVol to ffs_mount_vol ffsSyncVol to ffs_sync_vol Signed-off-by: Jesse Barton --- drivers/staging/exfat/exfat_super.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git

[PATCH 3/3] Staging: exfat: exfat_super.c Fixed coding style issues.

2019-09-29 Thread Jesse Barton
Removed function argument wrapping to new line. Signed-off-by: Jesse Barton --- drivers/staging/exfat/exfat_super.c | 29 + 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c

Did you get my last mail?

2019-09-29 Thread A. Douglas McGregor
Is this email still active? I have something important to discuss with you. Please contact me on my personal e-mail on: / a.douglas.mcgregory(@)gmail.com / Please remove the brackets (@) on your reply. A. Douglas McGregor ___ devel mailing list

[PATCH] rtl8723bs: core: Remove code valid only for 5GHZ

2019-09-29 Thread hariprasad
From: Hariprasad Kelam As per TODO ,remove code valid only for 5 GHz(channel > 14). Signed-off-by: Hariprasad Kelam --- drivers/staging/rtl8723bs/core/rtw_ieee80211.c | 19 ++- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git

Re: [PATCH] ion_system_heap: support X86 archtecture

2019-09-29 Thread Greg KH
On Sun, Sep 29, 2019 at 03:28:41PM +0800, jun.zh...@intel.com wrote: > From: zhang jun > > we see tons of warning like: > [ 45.846872] x86/PAT: NDK MediaCodec_:3753 map pfn RAM range req > write-combining for [mem 0x1e7a8-0x1e7a87fff], got write-back > [ 45.848827] x86/PAT:

Re: [PATCH] Staging: exfat: exfat_super.c: fixed camelcase coding style issue

2019-09-29 Thread Greg KH
On Sat, Sep 28, 2019 at 06:19:10PM -0500, Jesse Barton wrote: > Fixed a coding style issue. What coding style issue? Always be specific here. > Signed-off-by: Jesse Barton > --- > drivers/staging/exfat/exfat_super.c | 20 ++-- > 1 file changed, 10 insertions(+), 10

[PATCH] Staging: fbtft: fix memory leak in fbtft_framebuffer_alloc

2019-09-29 Thread Navid Emamdoost
In fbtft_framebuffer_alloc the error handling path should take care of releasing frame buffer after it is allocated via framebuffer_alloc, too. Therefore, in two failure cases the goto destination is changed to address this issue. Fixes: c296d5f9957c ("staging: fbtft: core support")

RE: [PATCH] staging: exfat: add exfat filesystem code to

2019-09-29 Thread Namjae Jeon
> [..] > > Put it in drivers/staging/sdfat/. > > > > But really we want someone from Samsung to say that they will treat > > the staging version as upstream. It doesn't work when people apply > > fixes to their version and a year later back port the fixes into > > staging. The staging tree is