Re: [PATCH v2 1/4] fbtft: Replace custom ->reset() with generic one

2021-04-17 Thread Fabio Aiuto
Hi, 'staging:' in mail subject is missing... On Fri, Apr 16, 2021 at 05:20:41PM +0300, Andy Shevchenko wrote: > The custom ->reset() repeats the generic one, replace it. > > Note, in newer kernels the context of the function is a sleeping one, > it's fine to switch over to the sleeping functions

Re: [External] [PATCH v3] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter.Enderborg
On 4/17/21 5:05 AM, Muchun Song wrote: > On Sat, Apr 17, 2021 at 12:08 AM Peter Enderborg > wrote: >> This adds a total used dma-buf memory. Details >> can be found in debugfs, however it is not for everyone >> and not always available. dma-buf are indirect allocated by >> userspace. So with this

[PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter Enderborg
This adds a total used dma-buf memory. Details can be found in debugfs, however it is not for everyone and not always available. dma-buf are indirect allocated by userspace. So with this value we can monitor and detect userspace applications that have problems. Signed-off-by: Peter Enderborg ---

Re: [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Christian König
Am 17.04.21 um 12:40 schrieb Peter Enderborg: This adds a total used dma-buf memory. Details can be found in debugfs, however it is not for everyone and not always available. dma-buf are indirect allocated by userspace. So with this value we can monitor and detect userspace applications that have

Re: [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter.Enderborg
On 4/17/21 12:59 PM, Christian König wrote: > Am 17.04.21 um 12:40 schrieb Peter Enderborg: >> This adds a total used dma-buf memory. Details >> can be found in debugfs, however it is not for everyone >> and not always available. dma-buf are indirect allocated by >> userspace. So with this value we

Re: [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Christian König
Am 17.04.21 um 13:20 schrieb peter.enderb...@sony.com: On 4/17/21 12:59 PM, Christian König wrote: Am 17.04.21 um 12:40 schrieb Peter Enderborg: This adds a total used dma-buf memory. Details can be found in debugfs, however it is not for everyone and not always available. dma-buf are indirect

Re: [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter.Enderborg
On 4/17/21 1:54 PM, Christian König wrote: > Am 17.04.21 um 13:20 schrieb peter.enderb...@sony.com: >> On 4/17/21 12:59 PM, Christian König wrote: >>> Am 17.04.21 um 12:40 schrieb Peter Enderborg: This adds a total used dma-buf memory. Details can be found in debugfs, however it is not fo

Re: [External] [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Muchun Song
On Sat, Apr 17, 2021 at 6:41 PM Peter Enderborg wrote: > > This adds a total used dma-buf memory. Details > can be found in debugfs, however it is not for everyone > and not always available. dma-buf are indirect allocated by > userspace. So with this value we can monitor and detect > userspace ap

[Bug 212469] plymouth animation freezes during shutdown

2021-04-17 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=212469 Arnas (arnasz...@gmail.com) changed: What|Removed |Added CC||arnasz...@gmail.com --- Com

Re: [External] [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter.Enderborg
On 4/17/21 3:07 PM, Muchun Song wrote: > On Sat, Apr 17, 2021 at 6:41 PM Peter Enderborg > wrote: >> This adds a total used dma-buf memory. Details >> can be found in debugfs, however it is not for everyone >> and not always available. dma-buf are indirect allocated by >> userspace. So with this v

Re: [External] [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Muchun Song
On Sat, Apr 17, 2021 at 9:44 PM wrote: > > On 4/17/21 3:07 PM, Muchun Song wrote: > > On Sat, Apr 17, 2021 at 6:41 PM Peter Enderborg > > wrote: > >> This adds a total used dma-buf memory. Details > >> can be found in debugfs, however it is not for everyone > >> and not always available. dma-buf

Re: [External] [PATCH v4] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Christian König
Am 17.04.21 um 16:21 schrieb Muchun Song: On Sat, Apr 17, 2021 at 9:44 PM wrote: On 4/17/21 3:07 PM, Muchun Song wrote: On Sat, Apr 17, 2021 at 6:41 PM Peter Enderborg wrote: This adds a total used dma-buf memory. Details can be found in debugfs, however it is not for everyone and not always

[PATCH Resend] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Fabio M. De Francesco
Added a 'break' in the default case of a switch selection statement. Signed-off-by: Fabio M. De Francesco --- drivers/gpu/drm/drm_bufs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_bufs.c b/drivers/gpu/drm/drm_bufs.c index e3d77dfefb0a..fc40aa0adf73 10

Re: [Outreachy kernel] [PATCH Resend] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Julia Lawall
On Sat, 17 Apr 2021, Fabio M. De Francesco wrote: > Added a 'break' in the default case of a switch selection statement. Why? julia > > Signed-off-by: Fabio M. De Francesco > --- > drivers/gpu/drm/drm_bufs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/g

Re: [Outreachy kernel] [PATCH Resend] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Fabio M. De Francesco
On Saturday, April 17, 2021 5:45:46 PM CEST Julia Lawall wrote: > On Sat, 17 Apr 2021, Fabio M. De Francesco wrote: > > Added a 'break' in the default case of a switch selection statement. > > Why? > GCC issues a warning, even if it is not strictly necessary for the code to work properly. Do you

Re: [Outreachy kernel] [PATCH Resend] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Julia Lawall
On Sat, 17 Apr 2021, Fabio M. De Francesco wrote: > On Saturday, April 17, 2021 5:45:46 PM CEST Julia Lawall wrote: > > On Sat, 17 Apr 2021, Fabio M. De Francesco wrote: > > > Added a 'break' in the default case of a switch selection statement. > > > > Why? > > > GCC issues a warning, even if i

[PATCH v2] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Fabio M. De Francesco
Added a "break" in the default case of a switch select statement. GCC complains, although this "break" is not strictly necessary for the code to work as expected. Signed-off-by: Fabio M. De Francesco --- Changes from v1: Added the reason why of this change in the log. drivers/gpu/drm/drm_bufs

[PATCH] drm/msm: always parse interconnects

2021-04-17 Thread Caleb Connolly
The WARN_ON in dpu_runtime_resume() fires constantly on non-SC7180 platforms. As SDM845 now has interconnects hooked up we should always try and parse them. Fixes: 627dc55c273d ("drm/msm/disp/dpu1: icc path needs to be set before dpu runtime resume") Signed-off-by: Caleb Connolly --- drivers/gp

[PATCH v5] dma-buf: Add DmaBufTotal counter in meminfo

2021-04-17 Thread Peter Enderborg
This adds a total used dma-buf memory. Details can be found in debugfs, however it is not for everyone and not always available. dma-buf are indirect allocated by userspace. So with this value we can monitor and detect userspace applications that have problems. Signed-off-by: Peter Enderborg ---

Re: [PATCH] drm/msm: always parse interconnects

2021-04-17 Thread Rob Clark
On Sat, Apr 17, 2021 at 9:21 AM Caleb Connolly wrote: > > The WARN_ON in dpu_runtime_resume() fires constantly on non-SC7180 > platforms. As SDM845 now has interconnects hooked up we should always > try and parse them. > > Fixes: 627dc55c273d ("drm/msm/disp/dpu1: icc path needs to be set before dp

[PATCH] drm/nouveau/dispnv50: disp.c: Replace drm_modeset_*_all with DRM_MODESET_LOCK_ALL_*

2021-04-17 Thread Fabio M. De Francesco
Replace the deprecated API with DRM_MODESET_LOCK_ALL_* helpers (according to the TODO list of the DRM subsystem). Signed-off-by: Fabio M. De Francesco --- drivers/gpu/drm/nouveau/dispnv50/disp.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/

Re: [git pull] drm/vmwgfx fixes for 5.12-rc8

2021-04-17 Thread Dave Airlie
Hi Zack, Please make sure to always cc dri-devel and/or Daniel on these so if I'm away they don't get lost, but also so that they make it into patchwork for processing. If you have a chance can you resend it, I'll see if we can process this out of band and get it to Linus before release. Dave.

[git pull] drm/vmwgfx fixes for 5.12-rc8

2021-04-17 Thread Dave Airlie
Hi Linus, Back from holidays and this was in the cracks (Zack forgot to cc Daniel/lists), I've just piled it onto drm fixes. It contains two regression fixes for vmwgfx, one due to a refactor which meant locks were being used before initialisation, and the other in fixing up some warnings from th

Re: [git pull] drm/vmwgfx fixes for 5.12-rc8

2021-04-17 Thread pr-tracker-bot
The pull request you sent on Sun, 18 Apr 2021 09:48:56 +1000: > git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2021-04-18 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/aba5970c4da0059ed8052188a341a85ac8845d6f Thank you! -- Deet-doot-dot, I am a bot. https://k