linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: Adjustments for init_atags_procfs()
       [not found] <6cbcf640-55e5-2f11-4a09-716fe681c0d2@web.de>
@ 2023-03-28 17:13 ` Markus Elfring
  2023-03-28 17:15   ` [PATCH 1/2] ARM: Delete an error message for a failed memory allocation in init_atags_procfs() Markus Elfring
                     ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Markus Elfring @ 2023-03-28 17:13 UTC (permalink / raw)
  To: kernel-janitors, linux-arm-kernel, Russell King; +Cc: cocci, LKML

Date: Tue, 28 Mar 2023 19:06:32 +0200

A few update suggestions were taken into account
from static source code analysis.

Markus Elfring (2):
  Delete an error message for a failed memory allocation
  Return directly after a failed kmalloc()

 arch/arm/kernel/atags_proc.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

--
2.40.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 1/2] ARM: Delete an error message for a failed memory allocation in init_atags_procfs()
  2023-03-28 17:13 ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
@ 2023-03-28 17:15   ` Markus Elfring
  2023-03-28 17:17   ` [PATCH 2/2] ARM: Return directly after a failed kmalloc() " Markus Elfring
  2024-01-10 11:48   ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
  2 siblings, 0 replies; 14+ messages in thread
From: Markus Elfring @ 2023-03-28 17:15 UTC (permalink / raw)
  To: kernel-janitors, linux-arm-kernel, Russell King; +Cc: cocci, LKML

Date: Tue, 28 Mar 2023 18:40:26 +0200

Omit an extra message for a memory allocation failure in this function.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/arm/kernel/atags_proc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/kernel/atags_proc.c b/arch/arm/kernel/atags_proc.c
index 3ec2afe78423..2f08ab08e68f 100644
--- a/arch/arm/kernel/atags_proc.c
+++ b/arch/arm/kernel/atags_proc.c
@@ -69,8 +69,6 @@ static int __init init_atags_procfs(void)

 nomem:
 	kfree(b);
-	pr_err("Exporting ATAGs: not enough memory\n");
-
 	return -ENOMEM;
 }
 arch_initcall(init_atags_procfs);
--
2.40.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH 2/2] ARM: Return directly after a failed kmalloc() in init_atags_procfs()
  2023-03-28 17:13 ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
  2023-03-28 17:15   ` [PATCH 1/2] ARM: Delete an error message for a failed memory allocation in init_atags_procfs() Markus Elfring
@ 2023-03-28 17:17   ` Markus Elfring
  2024-01-10 11:48   ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
  2 siblings, 0 replies; 14+ messages in thread
From: Markus Elfring @ 2023-03-28 17:17 UTC (permalink / raw)
  To: kernel-janitors, linux-arm-kernel, Russell King; +Cc: cocci, LKML

Date: Tue, 28 Mar 2023 18:56:31 +0200

Return directly after a call of the function “kmalloc” failed
at the beginning.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/arm/kernel/atags_proc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/kernel/atags_proc.c b/arch/arm/kernel/atags_proc.c
index 2f08ab08e68f..1c7441f3af85 100644
--- a/arch/arm/kernel/atags_proc.c
+++ b/arch/arm/kernel/atags_proc.c
@@ -56,7 +56,7 @@ static int __init init_atags_procfs(void)

 	b = kmalloc(sizeof(*b) + size, GFP_KERNEL);
 	if (!b)
-		goto nomem;
+		return -ENOMEM;

 	b->size = size;
 	memcpy(b->data, atags_copy, size);
--
2.40.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/2] ARM: Adjustments for init_atags_procfs()
  2023-03-28 17:13 ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
  2023-03-28 17:15   ` [PATCH 1/2] ARM: Delete an error message for a failed memory allocation in init_atags_procfs() Markus Elfring
  2023-03-28 17:17   ` [PATCH 2/2] ARM: Return directly after a failed kmalloc() " Markus Elfring
@ 2024-01-10 11:48   ` Markus Elfring
  2024-01-10 11:52     ` [0/2] " Markus Elfring
  2 siblings, 1 reply; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 11:48 UTC (permalink / raw)
  To: kernel-janitors, linux-arm-kernel, Russell King; +Cc: cocci, LKML

> Date: Tue, 28 Mar 2023 19:06:32 +0200
>
> A few update suggestions were taken into account
> from static source code analysis.
>
> Markus Elfring (2):
>   Delete an error message for a failed memory allocation
>   Return directly after a failed kmalloc()
>
>  arch/arm/kernel/atags_proc.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)

Is this patch series still in review queues?

See also:
https://lore.kernel.org/cocci/2258ce64-2a14-6778-8319-b342b06a1f33@web.de/
https://sympa.inria.fr/sympa/arc/cocci/2023-04/msg00034.html

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 11:48   ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
@ 2024-01-10 11:52     ` Markus Elfring
  2024-01-10 12:24       ` Russell King (Oracle)
  0 siblings, 1 reply; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 11:52 UTC (permalink / raw)
  To: kernel-janitors, linux-arm-kernel, Russell King; +Cc: cocci, LKML

> Is this patch series still in review queues?

See also:
https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 11:52     ` [0/2] " Markus Elfring
@ 2024-01-10 12:24       ` Russell King (Oracle)
  2024-01-10 12:44         ` Markus Elfring
  0 siblings, 1 reply; 14+ messages in thread
From: Russell King (Oracle) @ 2024-01-10 12:24 UTC (permalink / raw)
  To: Markus Elfring; +Cc: kernel-janitors, linux-arm-kernel, cocci, LKML

On Wed, Jan 10, 2024 at 12:52:10PM +0100, Markus Elfring wrote:
> > Is this patch series still in review queues?
> 
> See also:
> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html

I suspect no one looked at it, sorry. I don't catch everything that is
on the mailing list. Looks fine to me but it needs to end up in the
patch system to be applied. See signature below.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 12:24       ` Russell King (Oracle)
@ 2024-01-10 12:44         ` Markus Elfring
  2024-01-10 12:47           ` Russell King (Oracle)
  0 siblings, 1 reply; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 12:44 UTC (permalink / raw)
  To: Russell King, linux-arm-kernel; +Cc: kernel-janitors, LKML, cocci

>>> Is this patch series still in review queues?
>>
>> See also:
>> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
>> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html
>
> I suspect no one looked at it, sorry.

Special mailing list settings probably influenced this situation.


>                                       I don't catch everything that is
> on the mailing list. Looks fine to me but it needs to end up in the
> patch system to be applied.

Can you collaborate also with mentioned mailing list archive interfaces?

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 12:44         ` Markus Elfring
@ 2024-01-10 12:47           ` Russell King (Oracle)
  2024-01-10 12:52             ` Markus Elfring
  2024-01-10 13:34             ` Christian Heusel
  0 siblings, 2 replies; 14+ messages in thread
From: Russell King (Oracle) @ 2024-01-10 12:47 UTC (permalink / raw)
  To: Markus Elfring; +Cc: linux-arm-kernel, kernel-janitors, LKML, cocci

On Wed, Jan 10, 2024 at 01:44:01PM +0100, Markus Elfring wrote:
> >>> Is this patch series still in review queues?
> >>
> >> See also:
> >> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
> >> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html
> >
> > I suspect no one looked at it, sorry.
> 
> Special mailing list settings probably influenced this situation.
> 
> >                                       I don't catch everything that is
> > on the mailing list. Looks fine to me but it needs to end up in the
> > patch system to be applied.
> 
> Can you collaborate also with mentioned mailing list archive interfaces?

Err what? Sorry, I don't understand your comment.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 12:47           ` Russell King (Oracle)
@ 2024-01-10 12:52             ` Markus Elfring
  2024-01-10 13:50               ` Russell King (Oracle)
  2024-01-10 13:34             ` Christian Heusel
  1 sibling, 1 reply; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 12:52 UTC (permalink / raw)
  To: Russell King, linux-arm-kernel; +Cc: kernel-janitors, LKML, cocci

>>>>> Is this patch series still in review queues?
>>>>
>>>> See also:
>>>> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
>>>> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html
>>>
>>> I suspect no one looked at it, sorry.
>>
>> Special mailing list settings probably influenced this situation.

Did any communication filters hinder the clarification of further development ideas?


>>>                                       I don't catch everything that is
>>> on the mailing list. Looks fine to me but it needs to end up in the
>>> patch system to be applied.
>>
>> Can you collaborate also with mentioned mailing list archive interfaces?
>
> Err what? Sorry, I don't understand your comment.

Are you going to pick any patches up from linked information sources?

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 12:47           ` Russell King (Oracle)
  2024-01-10 12:52             ` Markus Elfring
@ 2024-01-10 13:34             ` Christian Heusel
  2024-01-10 13:46               ` Markus Elfring
  1 sibling, 1 reply; 14+ messages in thread
From: Christian Heusel @ 2024-01-10 13:34 UTC (permalink / raw)
  To: Russell King (Oracle)
  Cc: Markus Elfring, linux-arm-kernel, kernel-janitors, LKML, cocci


[-- Attachment #1.1: Type: text/plain, Size: 1250 bytes --]

On 24/01/10 12:47PM, Russell King (Oracle) wrote:
> On Wed, Jan 10, 2024 at 01:44:01PM +0100, Markus Elfring wrote:
> > >>> Is this patch series still in review queues?
> > >>
> > >> See also:
> > >> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
> > >> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html
> > >
> > > I suspect no one looked at it, sorry.
> > 
> > Special mailing list settings probably influenced this situation.
> > 
> > >                                       I don't catch everything that is
> > > on the mailing list. Looks fine to me but it needs to end up in the
> > > patch system to be applied.
> > 
> > Can you collaborate also with mentioned mailing list archive interfaces?
> 
> Err what? Sorry, I don't understand your comment.

I am just generally following along here, but to give some context it
seems like Markus is banned from posting to various kernel mailing
lists[0][1][2].

Cheers,
Chris

[0]: https://lkml.org/lkml/2023/6/19/38
[1]: https://lore.kernel.org/lkml/CAHC9VhREfdgiCji=uEeCrc4w1kPGfnWGKnJuUYKXwTApdneSjQ@mail.gmail.com/T/#m1a55ecc3205045fe63ab0f12451705df911d31a0
[2]: https://lore.kernel.org/all/20200629081039.GA1221843@kroah.com/

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 13:34             ` Christian Heusel
@ 2024-01-10 13:46               ` Markus Elfring
  0 siblings, 0 replies; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 13:46 UTC (permalink / raw)
  To: Christian Heusel, Russell King, linux-arm-kernel, kernel-janitors
  Cc: LKML, cocci

> I am just generally following along here, but to give some context it
> seems like Markus is banned from posting to various kernel mailing
> lists[0][1][2].

This was the case for a while.
Were such communication filters reconsidered anyhow recently?

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 12:52             ` Markus Elfring
@ 2024-01-10 13:50               ` Russell King (Oracle)
  2024-01-10 14:00                 ` Markus Elfring
  0 siblings, 1 reply; 14+ messages in thread
From: Russell King (Oracle) @ 2024-01-10 13:50 UTC (permalink / raw)
  To: Markus Elfring; +Cc: linux-arm-kernel, kernel-janitors, LKML, cocci

On Wed, Jan 10, 2024 at 01:52:34PM +0100, Markus Elfring wrote:
> >>>>> Is this patch series still in review queues?
> >>>>
> >>>> See also:
> >>>> https://lore.kernel.org/cocci/562a6f99-3f8e-9a77-e519-b668e24dced2@web.de/
> >>>> https://sympa.inria.fr/sympa/arc/cocci/2023-03/msg00098.html
> >>>
> >>> I suspect no one looked at it, sorry.
> >>
> >> Special mailing list settings probably influenced this situation.
> 
> Did any communication filters hinder the clarification of further development ideas?

How about doing the research yourself? Using lore, it's possible to
work it out. Find the message id. Then visit

https://lore.kernel.org/r/<message-id>

and study the result. It will give you the answer you want.

> >>>                                       I don't catch everything that is
> >>> on the mailing list. Looks fine to me but it needs to end up in the
> >>> patch system to be applied.
> >>
> >> Can you collaborate also with mentioned mailing list archive interfaces?
> >
> > Err what? Sorry, I don't understand your comment.
> 
> Are you going to pick any patches up from linked information sources?

No. Did you read my first reply which told you how patches get applied
to arch/arm? If you didn't, your patch won't get applied.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 13:50               ` Russell King (Oracle)
@ 2024-01-10 14:00                 ` Markus Elfring
  2024-01-10 14:07                   ` Russell King (Oracle)
  0 siblings, 1 reply; 14+ messages in thread
From: Markus Elfring @ 2024-01-10 14:00 UTC (permalink / raw)
  To: Russell King, linux-arm-kernel, kernel-janitors; +Cc: LKML, cocci

>> Are you going to pick any patches up from linked information sources?
>
> No. Did you read my first reply which told you how patches get applied
> to arch/arm? If you didn't, your patch won't get applied.

Do you request a resend of affected patches here?

Regards,
Markus

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [0/2] ARM: Adjustments for init_atags_procfs()
  2024-01-10 14:00                 ` Markus Elfring
@ 2024-01-10 14:07                   ` Russell King (Oracle)
  0 siblings, 0 replies; 14+ messages in thread
From: Russell King (Oracle) @ 2024-01-10 14:07 UTC (permalink / raw)
  To: Markus Elfring; +Cc: linux-arm-kernel, kernel-janitors, LKML, cocci

On Wed, Jan 10, 2024 at 03:00:11PM +0100, Markus Elfring wrote:
> >> Are you going to pick any patches up from linked information sources?
> >
> > No. Did you read my first reply which told you how patches get applied
> > to arch/arm? If you didn't, your patch won't get applied.
> 
> Do you request a resend of affected patches here?

Welcome to my /dev/null mailbox. It has plenty of space. Feel free to
continue sending your claptrap there. Rest assured I won't read it
anymore.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-01-10 14:08 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <6cbcf640-55e5-2f11-4a09-716fe681c0d2@web.de>
2023-03-28 17:13 ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
2023-03-28 17:15   ` [PATCH 1/2] ARM: Delete an error message for a failed memory allocation in init_atags_procfs() Markus Elfring
2023-03-28 17:17   ` [PATCH 2/2] ARM: Return directly after a failed kmalloc() " Markus Elfring
2024-01-10 11:48   ` [PATCH 0/2] ARM: Adjustments for init_atags_procfs() Markus Elfring
2024-01-10 11:52     ` [0/2] " Markus Elfring
2024-01-10 12:24       ` Russell King (Oracle)
2024-01-10 12:44         ` Markus Elfring
2024-01-10 12:47           ` Russell King (Oracle)
2024-01-10 12:52             ` Markus Elfring
2024-01-10 13:50               ` Russell King (Oracle)
2024-01-10 14:00                 ` Markus Elfring
2024-01-10 14:07                   ` Russell King (Oracle)
2024-01-10 13:34             ` Christian Heusel
2024-01-10 13:46               ` Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).