Re: [PATCH v5 19/33] doc-dyndbg: edit dynamic-debug-howto for brevity, audience

2022-08-06 Thread Bagas Sanjaya
ve list of api functions there. > > - simplify - drop extra words, phrases, sentences. > > - add "decorator" flags line to unify "prefix", trim fmlt descriptions > > CC: linux-...@vger.kernel.org > Signed-off-by: Jim Cromie > The documentation LGTM (n

Re: [PATCH 10/13] docs: leds: add leds-qcom-lpg.rst to the index file

2022-08-18 Thread Bagas Sanjaya
On 8/18/22 20:38, Mauro Carvalho Chehab wrote: > Address this warning: > Documentation/leds/leds-qcom-lpg.rst: WARNING: o documento não está > incluído em nenhum toctree > > Signed-off-by: Mauro Carvalho Chehab > --- > > See [PATCH 00/13] at: > https://lore.kernel.org/all/cover.166082943

Re: [PATCH 00/22] Fix kernel-doc warnings at linux-next

2022-06-29 Thread Bagas Sanjaya
On Tue, Jun 28, 2022 at 10:46:04AM +0100, Mauro Carvalho Chehab wrote: > As we're currently discussing about making kernel-doc issues fatal when > CONFIG_WERROR is enable, let's fix all 60 kernel-doc warnings > inside linux-next: > To be fair, besides triggering error on kernel-doc warnings, Sph

Re: [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU

2022-04-17 Thread Bagas Sanjaya
On 4/16/22 02:50, Tales Lelo da Aparecida wrote: > To make sure maintainers of amdgpu drivers are aware of any changes > in their documentation, add its entry to MAINTAINERS. > Did you mean the Documentation/gpu/amdgpu/ is maintained by dri-devel? -- An old man doll... just what I always wante

Re: [PATCH] Documentation: fb: udlfb: clean up text and formatting

2022-08-27 Thread Bagas Sanjaya
On 8/28/22 02:39, Randy Dunlap wrote: > -From the command line, pass options to modprobe > -modprobe udlfb fb_defio=0 console=1 shadow=1 > +From the command line, pass options to modprobe:: > > -Or modify options on the fly at /sys/module/udlfb/parameters directory via > -sudo nano fb_defio > -ch

Re: [PATCH] drm/doc: Custom Kconfig for KUnit is no longer needed

2022-09-05 Thread Bagas Sanjaya
On 9/6/22 01:47, Michał Winiarski wrote: > References: commit 6fc3a8636a7b ("kunit: tool: Enable virtio/PCI by default > on UML") Use Fixes: tag for bugfix patches instead. -- An old man doll... just what I always wanted! - Clara

[PATCH 1/3] drm/i915/doc: Escape wildcard in method names

2023-02-03 Thread Bagas Sanjaya
/linux-next/20230203134622.0b631...@canb.auug.org.au/ Fixes: 0c3064cf33fbfa ("drm/i915/doc: Document where to implement register workarounds") Reported-by: Stephen Rothwell Signed-off-by: Bagas Sanjaya --- drivers/gpu/drm/i915/gt/intel_workarounds.c | 6 +++--- 1 file changed, 3 insert

[PATCH 2/3] drm/scheduler: Fix elapsed_ns kernel-doc error

2023-02-03 Thread Bagas Sanjaya
e error by appending missing colon to @elapsed_ns name in its kernel-doc comment. Link: https://lore.kernel.org/linux-next/20230203135027.1a467...@canb.auug.org.au/ Fixes: 248cd9b265fca6 ("drm/scheduler: track GPU active time per entity") Reported-by: Stephen Rothwell Signed-off-by: B

[PATCH 3/3] media: v4l2-core: Describe privacy_led field of v4l2_subdev

2023-02-03 Thread Bagas Sanjaya
...@canb.auug.org.au/ Fixes: 10d96e289fbd77 ("media: v4l2-core: Make the v4l2-core code enable/disable the privacy LED if present") Reported-by: Stephen Rothwell Signed-off-by: Bagas Sanjaya --- include/media/v4l2-subdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media

[PATCH 0/3] htmldocs fixes for next-20230203

2023-02-03 Thread Bagas Sanjaya
Here are small htmldocs fixes for htmldocs warnings that are recently reported for next-20230203. Each patch can be applied separately by respective maintainers. Bagas Sanjaya (3): drm/i915/doc: Escape wildcard in method names drm/scheduler: Fix elapsed_ns kernel-doc error media: v4l2-core

Re: [PATCH 2/3] drm/scheduler: Fix elapsed_ns kernel-doc error

2023-02-03 Thread Bagas Sanjaya
in that case? > On SoB area, you can add: [Bagas: Append missing colon to @elapsed_ns] Signed-off-by: Bagas Sanjaya Thanks. -- An old man doll... just what I always wanted! - Clara

Re: [PATCH] Documentation: gpu: add acceleration node section

2023-02-22 Thread Bagas Sanjaya
On Thu, Feb 23, 2023 at 02:52:52AM +, Dylan Le wrote: > > This patch was initially written for the Linux Kernel Bug Fixing Mentorship > program. The patch adds a temporarily stubbed section on Acceleration Nodes > to resolve a documentation warning. > > This resolves the warning: > ./Document

Re: [PATCH v7 00/15] dma-fence: Deadline awareness

2023-02-28 Thread Bagas Sanjaya
On Mon, Feb 27, 2023 at 11:35:06AM -0800, Rob Clark wrote: > From: Rob Clark > > This series adds a deadline hint to fences, so realtime deadlines > such as vblank can be communicated to the fence signaller for power/ > frequency management decisions. > > This is partially inspired by a trick i9

Re: [PATCH v7 00/15] dma-fence: Deadline awareness

2023-02-28 Thread Bagas Sanjaya
On 2/28/23 22:44, Rob Clark wrote: > You can find my branch here: > > https://gitlab.freedesktop.org/robclark/msm/-/commits/dma-fence/deadline > Pulled, thanks! -- An old man doll... just what I always wanted! - Clara

Re: [PATCH v7 01/15] dma-buf/dma-fence: Add deadline awareness

2023-02-28 Thread Bagas Sanjaya
/ > + void (*set_deadline)(struct dma_fence *fence, ktime_t deadline); > }; > > void dma_fence_init(struct dma_fence *fence, const struct dma_fence_ops *ops, > @@ -583,6 +601,8 @@ static inline signed long dma_fence_wait(struct dma_fence > *fence, bool intr) > return ret < 0 ? ret : 0; > } > > +void dma_fence_set_deadline(struct dma_fence *fence, ktime_t deadline); > + > struct dma_fence *dma_fence_get_stub(void); > struct dma_fence *dma_fence_allocate_private_stub(void); > u64 dma_fence_context_alloc(unsigned num); The doc LGTM, thanks! Reviewed-by: Bagas Sanjaya -- An old man doll... just what I always wanted! - Clara signature.asc Description: PGP signature

Re: [PATCH v8 01/16] dma-buf/dma-fence: Add deadline awareness

2023-03-01 Thread Bagas Sanjaya
ypo, clarify past deadlines > > Signed-off-by: Rob Clark > Reviewed-by: Christian König > Acked-by: Pekka Paalanen I have given my Reviewed-by from v7 [1], but it didn't get picked up, thus giving it again: Reviewed-by: Bagas Sanjaya Thanks. [1]: https://lore.kernel.org/linux-d

Re: Linux 6.2.1 hits a display driver bug (list_del corruption, ffff88811b4af298->next is NULL)

2023-03-03 Thread Bagas Sanjaya
On Fri, Mar 03, 2023 at 03:46:56AM +0700, Ammar Faizi wrote: > Hi, > > Linux 6.2.1 hits a display driver bug (list_del corruption, > 88811b4af298->next is NULL). > > Unfortunately, I don't know the last good commit and the first bad commit. Can you please try v6.1? -- An old man doll... j

[PATCH] accel: Link to compute accelerator subsystem intro

2023-03-06 Thread Bagas Sanjaya
. Link to that doc until there is documentation of accelerator internals. Fixes: 2c204f3d53218d ("accel: add dedicated minor for accelerator devices") Signed-off-by: Bagas Sanjaya --- This comes from discussion on Dylan Le's attempted fix, where Jeffrey Hugo suspected th

Re: [PATCH drm-next 03/14] drm: manager to keep track of GPUs VA mappings

2023-01-18 Thread Bagas Sanjaya
On Wed, Jan 18, 2023 at 07:12:45AM +0100, Danilo Krummrich wrote: > This adds the infrastructure for a manager implementation to keep track > of GPU virtual address (VA) mappings. "Add infrastructure for ..." > + * Analogue to drm_gpuva_sm_map_ops_create() drm_gpuva_sm_unmap_ops_create() > + * pr

[PATCH linux-next 2/3] habanalabs: Fix list of /sys/class/habanalabs/hl/status

2023-01-20 Thread Bagas Sanjaya
: https://lore.kernel.org/linux-next/20230120130634.61c3e...@canb.auug.org.au/ Fixes: 0a14c331682f61 ("habanalabs: update device status sysfs documentation") Reported-by: Stephen Rothwell Signed-off-by: Bagas Sanjaya --- .../ABI/testing/sysfs-driver-habanalabs | 23 ++--

[PATCH linux-next 0/3] Documentation fixes for linux-next (Jan 20)

2023-01-20 Thread Bagas Sanjaya
Here are fixes for recent htmldocs warnings reported in linux-next. Each patches can be picked up separately if ACKed. Bagas Sanjaya (3): Documentation: accel: escape wildcard in special file path habanalabs: Fix list of /sys/class/habanalabs/hl/status kvm: x86/pmu: Add blank line separator

[PATCH linux-next 1/3] Documentation: accel: escape wildcard in special file path

2023-01-20 Thread Bagas Sanjaya
. Link: https://lore.kernel.org/linux-next/20230120132116.21de1...@canb.auug.org.au/ Fixes: f65c5dac207322 ("docs: accel: Fix debugfs path") Reported-by: Stephen Rothwell Signed-off-by: Bagas Sanjaya --- Documentation/accel/introduction.rst | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH linux-next 3/3] kvm: x86/pmu: Add blank line separator before KVM_CAP_PMU_EVENT_MASKED_EVENTS code path list

2023-01-20 Thread Bagas Sanjaya
://lore.kernel.org/linux-next/20230120130927.3100f...@canb.auug.org.au/ Fixes: 651daa44b11c0e ("kvm: x86/pmu: Introduce masked events to the pmu event filter") Reported-by: Stephen Rothwell Signed-off-by: Bagas Sanjaya --- Documentation/virt/kvm/api.rst | 1 + 1 file changed, 1 insertion(+) di

Re: [PATCH v3 4/5] treewide: use get_random_bytes when possible

2022-10-06 Thread Bagas Sanjaya
On 10/6/22 23:53, Jason A. Donenfeld wrote: > The prandom_bytes() function has been a deprecated inline wrapper around > get_random_bytes() for several releases now, and compiles down to the > exact same code. Replace the deprecated wrapper with a direct call to > the real function. > > Reviewed-b

Re: [PATCH v5 01/10] gna: add PCI driver module

2022-10-20 Thread Bagas Sanjaya
On Thu, Oct 20, 2022 at 07:53:25PM +0200, Maciej Kwapulinski wrote: > +IOCTL > +- > +Intel(R) GNA driver controls the device through IOCTL interfaces. > +Following IOCTL commands - handled by DRM framework - are supported: > + > +GNA_GET_PARAMETER gets driver and device capabilities. > + > +GNA

Re: [PATCH v5 01/10] gna: add PCI driver module

2022-10-21 Thread Bagas Sanjaya
On 10/21/22 11:20, Greg Kroah-Hartman wrote: > On Thu, Oct 20, 2022 at 07:53:25PM +0200, Maciej Kwapulinski wrote: >> Add a new PCI driver for Intel(R) Gaussian & Neural Accelerator > > Please drop all of the (R) stuff in here, and in the Kconfig file and in > the .c files. If your lawyers insist

Re: [RFC PATCH 0/3] new subsystem for compute accelerator devices

2022-10-23 Thread Bagas Sanjaya
On Sun, Oct 23, 2022 at 12:46:19AM +0300, Oded Gabbay wrote: > In the last couple of months we had a discussion [1] about creating a new > subsystem for compute accelerator devices in the kernel. > > After an analysis that was done by DRM maintainers and myself, and following > a BOF session at th

Re: [PATCH] dma-buf: cma_heap: Fix typo in comment

2022-10-27 Thread Bagas Sanjaya
On Thu, Oct 27, 2022 at 03:26:38PM +0800, Mark-PK Tsai wrote: > Fix typo in comment. > Comment on what function? I had to see the diff context. > Signed-off-by: Mark-PK Tsai > --- > drivers/dma-buf/heaps/cma_heap.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drive

Re: [PATCH v2] dma-buf: cma_heap: Fix typo in comment

2022-10-27 Thread Bagas Sanjaya
On Fri, Oct 28, 2022 at 09:44:17AM +0800, Mark-PK Tsai wrote: > Remove duplicated "by" from comment in cma_heap_allocate(). > This patch isn't typofix but duplicate word stripping, right? If so, the patch subject should be "dma-buf: cma_heap: Remove duplicated 'by'". Thanks. -- An old man doll

Re: [PATCH] drm/nouveau: Adding support to control backlight using bl_power for nva3.

2022-10-30 Thread Bagas Sanjaya
On Sat, Oct 29, 2022 at 03:48:50PM -0300, antoniospg wrote: > Test plan: > > * Turn off: > echo 1 > /sys/class/backlight/nv_backlight/bl_power > > * Turn on: > echo 0 > /sys/class/backlight/nv_backlight/bl_power > You sent this patch twice, so I reply to the latest one. What is it doing? Pleas

Re: [PATCH] drm/nouveau: Add support to control backlight using bl_power for nva3.

2022-10-31 Thread Bagas Sanjaya
On 10/31/22 23:32, antoniospg wrote: > Summary: > > * Add support to turn on/off backlight when changing values in bl_power > file. This is achieved by using function backlight_get_brightness() > in nva3_set_intensity to get current brightness. > This is [PATCH v2], right? If so, next time p

Re: [PATCH] drm/i915: use sysfs_emit() to instead of scnprintf()

2022-12-05 Thread Bagas Sanjaya
On Mon, Dec 05, 2022 at 12:50:53PM +0200, Jani Nikula wrote: > On Thu, 01 Dec 2022, wrote: > > From: ye xingchen > > > > Replace the open-code with sysfs_emit() to simplify the code. > > I was going to push this, but noticed the function has a third > scnprintf(), and the last two play together

[PATCH] Documentation: gpu: vc4: add blank line separator before KUnit code block

2022-12-10 Thread Bagas Sanjaya
/202212102116.a10vg3jg-...@intel.com/ Fixes: 5304c8e6010012 ("Documentation: gpu: vc4: Add KUnit Tests Section") Reported-by: kernel test robot Signed-off-by: Bagas Sanjaya --- Documentation/gpu/vc4.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/gpu/vc4.rst b/Documen

Re: [PATCH] Documentation: gpu: vc4: add blank line separator before KUnit code block

2022-12-11 Thread Bagas Sanjaya
On 12/11/22 18:32, Maíra Canal wrote: > I believe Maxime fixed this issue on [1], but it hasn't been yet merged > into drm-misc-next. > > [1] > https://lore.kernel.org/dri-devel/20221208094727.2848310-1-max...@cerno.tech/ > Ah! I don't see that! Thanks anyway. -- An old man doll... just what

Re: Linux 6.2.1 hits a display driver bug (list_del corruption, ffff88811b4af298->next is NULL)

2023-04-11 Thread Bagas Sanjaya
On Mon, Mar 06, 2023 at 06:51:48PM +0700, Ammar Faizi wrote: > On Mon, Mar 06, 2023 at 12:54:59PM +0200, Jani Nikula wrote: > > Please file a bug at fdo gitlab: > > > > https://gitlab.freedesktop.org/drm/intel/wikis/How-to-file-i915-bugs > > OK, I posted it here https://gitlab.freedesktop.org/drm

Re: Linux 6.2.1 hits a display driver bug (list_del corruption, ffff88811b4af298->next is NULL)

2023-04-12 Thread Bagas Sanjaya
On Wed, Apr 12, 2023 at 06:00:07PM +0700, Ammar Faizi wrote: > On Wed, Apr 12, 2023 at 11:17:22AM +0700, Bagas Sanjaya wrote: > > From gitlab issue above, I don't see any progress on bisection attempt. > > Ammar, have you successfully boot Ubuntu 20.04 with v5.10 kernel and &g

Re: [PATCH 1/2] docs: process: allow Closes tags with links

2023-03-17 Thread Bagas Sanjaya
On 3/16/23 00:44, Matthieu Baerts wrote: > +In the same category as linking web pages, a special tag is also used to > close > +issues but only when the mentioned ticketing system can do this operation > +automatically:: > + > +Closes: https://example.com/issues/1234 > + > +Please use this

Re: [PATCH v4 1/8] accel/qaic: Add documentation for AIC100 accelerator driver

2023-03-21 Thread Bagas Sanjaya
On Mon, Mar 20, 2023 at 09:11:07AM -0600, Jeffrey Hugo wrote: > +AIC100 defines a number of MHI channels for different purposes. This is a > list > +of the defined channels, and their uses. > + > +| QAIC_LOOPBACK > +| Channels 0 & 1 > +| Valid for AMSS > +| Any data sent to the device on this chan

Re: [PATCH v4 1/8] accel/qaic: Add documentation for AIC100 accelerator driver

2023-03-21 Thread Bagas Sanjaya
On Tue, Mar 21, 2023 at 03:52:11PM -0600, Jeffrey Hugo wrote: > > > + > > > +Request field descriptions: > > > + > > > +| req_id- request ID. A request FIFO element and a response FIFO element > > > with > > > +| the same request ID refer to the same command. > > > + > > > +| seq_id- seque

Re: [PATCH v2 1/2] docs: process: allow Closes tags with links

2023-03-24 Thread Bagas Sanjaya
``git bisect``, please use the 'Fixes:' tag with the first 12 characters of > the SHA-1 ID, and the one line summary. Do not split the tag across multiple > The doc LGTM, thanks! Reviewed-by: Bagas Sanjaya -- An old man doll... just what I always wanted! - Clara

Re: [PATCH] dma-buf: heaps: Delete repeated word

2023-06-21 Thread Bagas Sanjaya
On Sun, Jun 18, 2023 at 10:50:43PM +0800, zhumao...@208suo.com wrote: > > Delete one of the rebundant word in comment. > > Signed-off-by: Zhu Mao > --- > drivers/dma-buf/heaps/cma_heap.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/dma-buf/heaps/cma_heap.c >

Fwd: Kernel 5.11 crashes when it boots, it produces black screen.

2023-05-10 Thread Bagas Sanjaya
Hi, I noticed a regression report on Bugzilla ([1]). As many developers don't have a look on it, I decided to forward it by email. See the report for the full thread. Quoting from the report: > Azamat S. Kalimoulline 2021-04-06 15:45:08 UTC > > Same as in https://bugzilla.kernel.org/show_bug.c

Re: Fwd: Kernel 5.11 crashes when it boots, it produces black screen.

2023-05-10 Thread Bagas Sanjaya
On 5/10/23 16:51, Linux regression tracking (Thorsten Leemhuis) wrote: > Bagas, thx for all your help with regression tracking, much appreciated > (side note, as I'm curious for a while already: what is your motivation? > Just want to help? But whatever, any help is great!). > I did this when I w

[PATCH 03/10] net: bonding: Add SPDX identifier to remaining files

2023-05-11 Thread Bagas Sanjaya
Previous batches of SPDX conversion missed bond_main.c and bonding_priv.h because these files doesn't mention intended GPL version. Add SPDX identifier to these files, assuming GPL 1.0+. Cc: Thomas Davis Cc: Christophe JAILLET Cc: Stephen Hemminger Signed-off-by: Bagas Sanjaya --- dr

[PATCH 02/10] mISDN: Replace GPL notice boilerplate with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Replace unversioned GPL notice boilerplate on dsp_* with SPDX identifier for GPL 1.0+. These files missed previous SPDX conversion batches due to not specifying GPL version. Cc: Stephen Hemminger Signed-off-by: Bagas Sanjaya --- drivers/isdn/mISDN/dsp_audio.c| 4 +--- drivers/isdn/mISDN

[PATCH 04/10] net: ethernet: 8390: Replace GPL boilerplate with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Replace GPL boilerplate notice on remaining files with appropriate SPDX tag. For files mentioning COPYING, use GPL 2.0; otherwise GPL 1.0+. Cc: David A. Hinds Cc: Donald Becker Cc: Peter De Schrijver Cc: Greg Ungerer Cc: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/net/ethernet

[PATCH 00/10] Treewide GPL SPDX conversion (love letter to Didi)

2023-05-11 Thread Bagas Sanjaya
situation). Happy reviewing! [1]: https://lore.kernel.org/all/?q=f%3A%22didi.debian%40cknow.org%22+AND+s%3A%22GPL%22+AND+NOT+s%3A%22Re%3A%22 [2]: https://lore.kernel.org/all/20181028112728.gd8...@kroah.com/ Bagas Sanjaya (10): agp/amd64: Remove GPL distribution notice mISDN: Replace GPL notice b

[PATCH 07/10] drivers: staging: wlan-ng: Remove GPL/MPL boilerplate

2023-05-11 Thread Bagas Sanjaya
Remove the license boilerplate as there is already SPDX license identifier which fulfills the same intention as the boilerplate. Cc: Dan Carpenter Signed-off-by: Bagas Sanjaya --- drivers/staging/wlan-ng/hfa384x.h | 21 - drivers/staging/wlan-ng/hfa384x_usb.c

[PATCH 06/10] pcmcia: Add SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Add SPDX identifier on remaining files untouched during previous rounds of SPDX conversion while replacing boilerplate notice if any. Cc: Maxime Bizon Cc: David A. Hinds Cc: John G. Dorsey Signed-off-by: Bagas Sanjaya --- drivers/pcmcia/bcm63xx_pcmcia.c | 5 + drivers/pcmcia/cirrus.h

[PATCH 08/10] drivers: watchdog: Replace GPL license notice with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
runeau Cc: Andrew Sharp Cc: Denis Turischev Cc: Mika Westerberg Signed-off-by: Bagas Sanjaya --- drivers/watchdog/ep93xx_wdt.c | 5 + drivers/watchdog/ibmasr.c | 3 +-- drivers/watchdog/m54xx_wdt.c | 4 +--- drivers/watchdog/max63xx_wdt.c| 5 + drivers/watchdog/mo

[PATCH 10/10] include: synclink: Replace GPL license notice with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Replace unversioned GPL license notice with appropriate SPDX identifier, which is GPL 1.0+. Signed-off-by: Bagas Sanjaya --- include/linux/synclink.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/synclink.h b/include/linux/synclink.h index f1405b1c71ba15

[PATCH 05/10] net: ethernet: i825xx: Replace GPL boilerplate with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Replace unversioned GPL boilerplate notice on remaining i825xx files with appropriate SPDX identifier. For files that contains "extension to Linux kernel", use GPL 2.0, otherwise GPL 1.0+. Cc: Donald Becker Cc: Michael Hipp Cc: Simon Horman Signed-off-by: Bagas Sanjaya --- d

[PATCH 01/10] agp/amd64: Remove GPL distribution notice

2023-05-11 Thread Bagas Sanjaya
There is already SPDX tag which does the job, so remove the redundant notice. Cc: Christophe JAILLET Signed-off-by: Bagas Sanjaya --- drivers/char/agp/amd64-agp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index ce8651436609fc

[PATCH 09/10] udf: Replace license notice with SPDX identifier

2023-05-11 Thread Bagas Sanjaya
Except Kconfig and Makefile, all source files for UDF filesystem doesn't bear SPDX license identifier. Add appropriate license identifier while replacing boilerplates. Cc: Thomas Gleixner Signed-off-by: Bagas Sanjaya --- fs/udf/balloc.c| 6 +- fs/udf/dir.c | 6 +- f

Re: [PATCH 08/10] drivers: watchdog: Replace GPL license notice with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
On 5/11/23 22:08, Guenter Roeck wrote: >> +/* SPDX-License-Identifier: GPL-2.0-only */ > > This was supposed to be a C++ style comment for C source files. > Has the rule changed ? > Oops, I don't see checkpatch. Will fix. >> +/* SPDX-License-Identifier: GPL-2.0-only */ > > The text below sugge

Re: [PATCH 00/10] Treewide GPL SPDX conversion (love letter to Didi)

2023-05-12 Thread Bagas Sanjaya
On 5/12/23 07:41, Jakub Kicinski wrote: > On Thu, 11 May 2023 20:33:56 +0700 Bagas Sanjaya wrote: >> I trigger this patch series because of Didi's GPL full name fixes >> attempt [1], for which all of them had been NAKed. In many cases, the >> appropriate correct

[PATCH v2 02/10] mISDN: Replace GPL notice boilerplate with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
Replace unversioned GPL notice boilerplate on dsp_* with SPDX identifier for GPL 1.0+. These files missed previous SPDX conversion batches due to not specifying GPL version. Cc: Stephen Hemminger Cc: Andreas Eversberg Cc: Karsten Keil Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya

[PATCH v2 01/10] agp/amd64: Remove GPL distribution notice

2023-05-12 Thread Bagas Sanjaya
There is already SPDX tag which does the job, so remove the redundant notice. Cc: Christophe JAILLET Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/char/agp/amd64-agp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64

[PATCH v2 03/10] net: bonding: Add SPDX identifier to remaining files

2023-05-12 Thread Bagas Sanjaya
ff-by: Bagas Sanjaya --- drivers/net/bonding/bond_main.c| 3 ++- drivers/net/bonding/bonding_priv.h | 4 +--- include/net/bonding.h | 4 +--- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 3fed88862

[PATCH v2 00/10] Treewide GPL SPDX conversion and cleanup (in response to Didi's GPL full name fixes)

2023-05-12 Thread Bagas Sanjaya
rnel.org/netdev/20230511133406.78155-1-bagasdo...@gmail.com/ Bagas Sanjaya (10): agp/amd64: Remove GPL distribution notice mISDN: Replace GPL notice boilerplate with SPDX identifier net: bonding: Add SPDX identifier to remaining files net: ethernet: 8390: Replace GPL boilerplate with SPDX identifier

[PATCH v2 04/10] net: ethernet: 8390: Replace GPL boilerplate with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/net/ethernet/8390/8390.h | 2 ++ drivers/net/ethernet/8390/apne.c | 7 +-- drivers/net/ethernet/8390/axnet_cs.c | 6 +++--- drivers/net/ethernet/8390/hydra.c | 6 ++ drivers/net/ethernet/8390/lib8390.c | 5

[PATCH v2 09/10] udf: Replace license notice with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
Except Kconfig and Makefile, all source files for UDF filesystem doesn't bear SPDX license identifier. Add appropriate license identifier while replacing boilerplates. Cc: Thomas Gleixner Cc: Pali Rohár Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- tglx, in your patch attem

[PATCH v2 05/10] net: ethernet: i825xx: Replace GPL boilerplate with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
an Signed-off-by: Bagas Sanjaya --- drivers/net/ethernet/i825xx/82596.c | 5 ++--- drivers/net/ethernet/i825xx/lasi_82596.c | 5 ++--- drivers/net/ethernet/i825xx/lib82596.c | 5 ++--- drivers/net/ethernet/i825xx/sun3_82586.c | 4 +--- drivers/net/ethernet/i825xx/sun3_82586.h | 4 +--- 5 fil

[PATCH v2 06/10] pcmcia: Add SPDX identifier

2023-05-12 Thread Bagas Sanjaya
Add SPDX identifier on remaining files untouched during previous rounds of SPDX conversion while replacing boilerplate notice if any. Cc: Maxime Bizon Cc: David A. Hinds Cc: John G. Dorsey Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/pcmcia/bcm63xx_pcmcia.c | 5

[PATCH v2 07/10] drivers: staging: wlan-ng: Remove GPL/MPL boilerplate

2023-05-12 Thread Bagas Sanjaya
Ombredanne Cc: Thomas Gleixner Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/staging/wlan-ng/hfa384x.h | 21 - drivers/staging/wlan-ng/hfa384x_usb.c | 21 - drivers/staging/wlan-ng/p80211conv.c

[PATCH v2 10/10] include: synclink: Replace GPL license notice with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
Replace unversioned GPL license notice with appropriate SPDX identifier, which is GPL 1.0+. Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- include/linux/synclink.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/synclink.h b/include/linux

[PATCH v2 08/10] drivers: watchdog: Replace GPL license notice with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
iniemi Cc: Alessandro Zummo Cc: Andrey Panin Cc: Oleg Drokin Cc: Marc Zyngier Cc: Jonas Jensen Cc: Sylver Bruneau Cc: Andrew Sharp Cc: Denis Turischev Cc: Mika Westerberg Cc: Alan Cox Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/watchdog/ep93xx_wdt.c | 5 +---

Re: [PATCH v2 08/10] drivers: watchdog: Replace GPL license notice with SPDX identifier

2023-05-12 Thread Bagas Sanjaya
On 5/12/23 17:06, Bagas Sanjaya wrote: > diff --git a/drivers/watchdog/octeon-wdt-nmi.S > b/drivers/watchdog/octeon-wdt-nmi.S > index 97f6eb7b5a8e04..57bb0845de477d 100644 > --- a/drivers/watchdog/octeon-wdt-nmi.S > +++ b/drivers/watchdog/octeon-wdt-nmi.S > @@ -1,8 +1,5 @@

Re: [PATCH v2 00/10] Treewide GPL SPDX conversion and cleanup (in response to Didi's GPL full name fixes)

2023-05-13 Thread Bagas Sanjaya
On 5/12/23 18:23, Greg Kroah-Hartman wrote: > I'm glad to take these types of changes through the SPDX tree, but > please break them up into smaller changes that show the justification > for each type of change in each subsystem, so that we can evaluate them > on an individual basis. As you did he

Re: [PATCH v2 09/10] udf: Replace license notice with SPDX identifier

2023-05-13 Thread Bagas Sanjaya
On 5/12/23 20:21, Richard Fontana wrote: > On Fri, May 12, 2023 at 6:07 AM Bagas Sanjaya wrote: > >> diff --git a/fs/udf/ecma_167.h b/fs/udf/ecma_167.h >> index de17a97e866742..b2b5bca45758df 100644 >> --- a/fs/udf/ecma_167.h >> +++ b/fs/udf/ecma_167.h >>

Re: [PATCH v2 08/10] drivers: watchdog: Replace GPL license notice with SPDX identifier

2023-05-13 Thread Bagas Sanjaya
On 5/12/23 19:46, Richard Fontana wrote: > On Fri, May 12, 2023 at 6:07 AM Bagas Sanjaya wrote: > > >> diff --git a/drivers/watchdog/sb_wdog.c b/drivers/watchdog/sb_wdog.c >> index 504be461f992a9..822bf8905bf3ce 100644 >> --- a/drivers/watchdog/sb_wdog.c >>

[PATCH v3 1/4] agp/amd64: Remove GPL distribution notice

2023-05-17 Thread Bagas Sanjaya
There is already SPDX tag which does the job, so remove the redundant notice. Cc: Christophe JAILLET Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/char/agp/amd64-agp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64

[PATCH v3 2/4] mISDN: Replace GPL notice boilerplate with SPDX identifier

2023-05-17 Thread Bagas Sanjaya
Replace unversioned GPL notice boilerplate on dsp_* with SPDX identifier for GPL 1.0+. These files missed previous SPDX conversion batches due to not specifying GPL version. Cc: Stephen Hemminger Cc: Andreas Eversberg Cc: Karsten Keil Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya

[PATCH v3 3/4] drivers: staging: wlan-ng: Remove GPL/MPL boilerplate

2023-05-17 Thread Bagas Sanjaya
Ombredanne Cc: Thomas Gleixner Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- drivers/staging/wlan-ng/hfa384x.h | 21 - drivers/staging/wlan-ng/hfa384x_usb.c | 21 - drivers/staging/wlan-ng/p80211conv.c

[PATCH v3 4/4] include: synclink: Replace GPL license notice with SPDX identifier

2023-05-17 Thread Bagas Sanjaya
Replace unversioned GPL license notice with appropriate SPDX identifier, which is GPL 1.0+. Reviewed-by: Simon Horman Signed-off-by: Bagas Sanjaya --- include/linux/synclink.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/synclink.h b/include/linux

[PATCH v3 0/4] Treewide GPL SPDX conversion and cleanup (in response to Didi's GPL full name fixes) - miscellaneous

2023-05-17 Thread Bagas Sanjaya
...@gmail.com/ [4]: https://lore.kernel.org/all/20230517072140.1086660-1-bagasdo...@gmail.com/ [5]: https://lore.kernel.org/all/20230517083344.1090863-1-bagasdo...@gmail.com/ Bagas Sanjaya (4): agp/amd64: Remove GPL distribution notice mISDN: Replace GPL notice boilerplate with SPDX identifier

Re: Fwd: Kernel 5.11 crashes when it boots, it produces black screen.

2023-05-20 Thread Bagas Sanjaya
On Wed, May 10, 2023 at 03:26:56PM +0700, Bagas Sanjaya wrote: > Anyway, let me add this regression to regzbot: > > #regzbot introduced: v5.10..v5.11 > https://bugzilla.kernel.org/show_bug.cgi?id=212579 > #regzbot title: Booting kernel on AMD Ryzen 5 PRO stucks in loading in

Fwd: absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers produce vast raster right and bottom borders on the larger resolution of two displays

2023-05-25 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > Original Summary: > absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers > produce vast raster right and bottom borders on the larger resolution of two > displays > > To reproduce: > 1-connect two unequal na

Re: Fwd: absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers produce vast raster right and bottom borders on the larger resolution of two displays

2023-05-25 Thread Bagas Sanjaya
On 5/25/23 17:52, Bagas Sanjaya wrote: > Hi, > > I notice a regression report on Bugzilla [1]. Quoting from it: > >> Original Summary: >> absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers >> produce vast raster right and bottom borders o

Re: Fwd: absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers produce vast raster right and bottom borders on the larger resolution of two displays

2023-05-25 Thread Bagas Sanjaya
On 5/25/23 17:55, Bagas Sanjaya wrote: > On 5/25/23 17:52, Bagas Sanjaya wrote: >> Hi, >> >> I notice a regression report on Bugzilla [1]. Quoting from it: >> >>> Original Summary: >>> absent both plymouth, and video= on linu lines, vtty[1-6] framebuff

Re: Fwd: absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers produce vast raster right and bottom borders on the larger resolution of two displays

2023-05-25 Thread Bagas Sanjaya
On Thu, May 25, 2023 at 06:37:05PM +0700, Bagas Sanjaya wrote: > Oops, again, I messed up the regzbot entry (reporter field still assigned > to me). Inconclusiving... > > #regzbot inconclusive: Wrong reporter assigned (from: doesn't take effect) > > Please ignore this thre

Re: [Nouveau] Fwd: absent both plymouth, and video= on linu lines, vtty[1-6] framebuffers produce vast raster right and bottom borders on the larger resolution of two displays

2023-05-25 Thread Bagas Sanjaya
On Thu, May 25, 2023 at 01:24:42PM +0200, Thorsten Leemhuis wrote: > Bagas, thx again for your efforts, much appreciated. But I guess for drm > drivers that have a line like > > B: https://gitlab.freedesktop.org/drm/[...] > > in MAINTAINERS (which includes all the popular drm drivers) this just >

Re: Fwd: Unexplainable packet drop starting at v6.4

2023-07-25 Thread Bagas Sanjaya
On Tue, Jul 18, 2023 at 07:51:24AM +0700, Bagas Sanjaya wrote: > Hi, > > I notice a regression report on Bugzilla [1]. Quoting from it: > > > Hi, > > > > After I updated to 6.4 through Archlinux kernel update, suddenly I noticed > > random packet losses on

Re: [PATCH] drm/radeon: Prefer 'unsigned int' to bare use of 'unsigned'

2023-07-29 Thread Bagas Sanjaya
On Fri, Jul 28, 2023 at 10:35:19PM +0800, 孙冉 wrote: > WARNING: Prefer 'unsigned int' to bare use of 'unsigned' > > Signed-off-by: Ran Sun Your From: address != SoB identity > --- > drivers/gpu/drm/radeon/radeon_object.h | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff

Re: [PATCH] drm/amd/pm: Clean up errors in smu73_discrete.h

2023-08-01 Thread Bagas Sanjaya
On Tue, Aug 01, 2023 at 10:00:24AM +, Ran Sun wrote: > Fix the following errors reported by checkpatch: > > ERROR: open brace '{' following struct go on the same line > ERROR: trailing whitespace > ERROR: space prohibited before open square bracket '[' > Thanks for fixing up your tooling to

Re: [PATCH] drm/amd/pm: Clean up errors in smu73_discrete.h

2023-08-01 Thread Bagas Sanjaya
On 01/08/2023 18:34, Jani Nikula wrote: > On Tue, 01 Aug 2023, Bagas Sanjaya wrote: >> And it is unfortunate that you and @208suo.com people doesn't reply to >> review comments (try searching lore.kernel.org) > > Essentially a one-way firehose of patches pointed at our

Fwd: Does not work backlight on Chromebook XE303C12 with Kernel version 6.3.4

2023-05-26 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > I did check it by flashlight. Even with all available backlights drivers > compiled as modules it does not work. With Kernel version 5.15.106 backlight > works fine. > Kernels for Chomebook uses dtb files that have some backli

Re: Fwd: Does not work backlight on Chromebook XE303C12 with Kernel version 6.3.4

2023-05-26 Thread Bagas Sanjaya
On Fri, May 26, 2023 at 08:46:32PM +0700, Bagas Sanjaya wrote: > Hi, > > I notice a regression report on Bugzilla [1]. Quoting from it: > > > I did check it by flashlight. Even with all available backlights drivers > > compiled as modules it does not work. With

Re: [PATCH 1/3] drm/todo: Add atomic modesetting references

2023-06-02 Thread Bagas Sanjaya
On Fri, Jun 02, 2023 at 11:11:34AM +0200, Geert Uytterhoeven wrote: > -There is a conversion guide for atomic and all you need is a GPU for a > +There is a conversion guide for atomic[1] and all you need is a GPU for a > non-converted driver (again virtual HW drivers for KVM are still all > -suita

Fwd: System (Xeon Nvidia) hangs at boot terminal after kernel 6.4.7

2023-08-09 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > Kernel 6.4.6 compiled from source worked AOK on my desktop with Intel Xeon > cpu and Nvidia graphics - see below for system specs. > > Kernels 6.4.7 & 6.4.8 also compiled from source with identical configs hang > with a froze

Re: [PATCH] drm/nouveau/iccsense:

2023-07-10 Thread Bagas Sanjaya
On Mon, Jul 10, 2023 at 03:06:47PM +0800, sunran...@208suo.com wrote: > Fixed error: 'do not use assignment in if condition' > > This patch fixes error: 'do not use assignment in if condition' > in drm/nouveau/iccsense I guess this is checkpatch fix, right? > > Signed-off-by: Ran Sun > --- >

Fwd: Framebuffer-Display issue. (Intel® Iris® Xe)

2023-07-16 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > Hello I have been having problems for some time now with displaying any linux > distribution with the new kernal. The only thing that can fix it are older > kernals. > > I can't describe it very well, so I'm attaching some pi

Fwd: Unexplainable packet drop starting at v6.4

2023-07-17 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > Hi, > > After I updated to 6.4 through Archlinux kernel update, suddenly I noticed > random packet losses on my routers like nodes. I have these networking > relevant config on my nodes > > 1. Using archlinux > 2. Network co

Re: Fwd: Unexplainable packet drop starting at v6.4

2023-07-19 Thread Bagas Sanjaya
On 7/19/23 18:49, Thorsten Leemhuis wrote: > On 18.07.23 02:51, Bagas Sanjaya wrote: >> >> I notice a regression report on Bugzilla [1]. Quoting from it: >> >>> After I updated to 6.4 through Archlinux kernel update, suddenly I noticed >>> random packet

Fwd: Kernel version 6.1.50 regression: radeonfb deactivate vga console

2023-09-01 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > Since kernel version 6.1.50 the VGA console stopped working on all HP > ProLiant (G6 and G7) servers with [AMD/ATI] ES1000 VGA controller. > > No issue with all kernel version 6.1.X before 6.1.50. > No issue with the kernel 6.

Re: Fwd: Kernel version 6.1.50 regression: radeonfb deactivate vga console

2023-09-04 Thread Bagas Sanjaya
On 02/09/2023 07:01, Bagas Sanjaya wrote: > #regzbot introduced: 9b539c4d1b921b > https://bugzilla.kernel.org/show_bug.cgi?id=217861 > #regzbot title: using pci aperture helpers deactivates AMD ES1000 VGA > controller > #regzbot inconclusive: now tracked on gitlab.freedesk

Re: [Bug 217892] New: [amdgpu]: system freezes when trying to turn back on monitor

2023-09-09 Thread Bagas Sanjaya
On Sat, Sep 09, 2023 at 10:19:36AM +, bugzilla-dae...@kernel.org wrote: > Hi, > > My setup is a dual monitor 4K/144Hz with running sway on it. Both monitors are > connected via DP to a Advanced Micro Devices, Inc. [AMD/ATI] Navi 31 [Radeon > RX > 7900 XT/7900 XTX]. Usually if i don't change m

Re: [PATCH] drm: fix doc warnings related to drm connector

2023-09-09 Thread Bagas Sanjaya
On Sat, Sep 09, 2023 at 04:33:43PM +0530, Bragatheswaran Manickavel wrote: > Addressing drm dp/hdmi connector related kernel documentation > warning and add more information about these values. What are these? > > Signed-off-by: Bragatheswaran Manickavel > --- > drivers/gpu/drm/drm_connector.c

Re: [PATCH] staging: fbtft: Removed unnecessary parenthesis around conditions to comply with the checkpatch coding style.

2023-09-12 Thread Bagas Sanjaya
On Wed, Sep 13, 2023 at 11:02:13AM +1000, Angus Gardner wrote: > --- > drivers/staging/fbtft/fb_ra8875.c | 11 --- > 1 file changed, 4 insertions(+), 7 deletions(-) No patch description and SoB, so Greg can't take this as-is. > - if ((par->info->var.xres == 320) && (par->info->var.yr

Fwd: Kernel 6.6-rc1 fails to reboot or shutdown Ryzen 5825U

2023-09-14 Thread Bagas Sanjaya
Hi, I notice a regression report on Bugzilla [1]. Quoting from it: > The Kernel stalls at boot very long with a drm-amdgpu message, but fails to > restart or shutdown with secure boot enabled or not. Magic key works to exit. > Nothing wrong in the Kernel 6.5 cycle. Later, the reporter (Cc'ed)

  1   2   >