linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging: most:  use inline functions for iface_to_hdm
@ 2023-03-20 10:33 Menna Mahmoud
  2023-03-20 15:44 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Menna Mahmoud @ 2023-03-20 10:33 UTC (permalink / raw)
  To: gregkh
  Cc: outreachy, parthiban.veerasooran, christian.gromm, drv, dave,
	yang.lee, linux-kernel, linux-staging, eng.mennamahmoud.mm,
	Julia Lawall

Convert `iface_to_hdm` macro into a static inline function.
it is not great to have macro that use `container_of` macro,
because from looking at the definition one cannot tell
what type it applies to.

One can get the same benefit from an efficiency point of view
by making an inline function.

Suggested-by: Julia Lawall <julia.lawall@inria.fr>
Signed-off-by: Menna Mahmoud <eng.mennamahmoud.mm@gmail.com>
---
 drivers/staging/most/dim2/dim2.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/most/dim2/dim2.c b/drivers/staging/most/dim2/dim2.c
index b8bd01ca1f11..21d1c9f24c3d 100644
--- a/drivers/staging/most/dim2/dim2.c
+++ b/drivers/staging/most/dim2/dim2.c
@@ -108,7 +108,10 @@ struct dim2_platform_data {
 	u8 fcnt;
 };
 
-#define iface_to_hdm(iface) container_of(iface, struct dim2_hdm, most_iface)
+static inline struct dim2_hdm *iface_to_hdm(struct most_interface *iface)
+{
+	return container_of(iface, struct dim2_hdm, most_iface);
+}
 
 /* Macro to identify a network status message */
 #define PACKET_IS_NET_INFO(p)  \
-- 
2.34.1


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

* Re: [PATCH] staging: most:  use inline functions for iface_to_hdm
  2023-03-20 10:33 [PATCH] staging: most: use inline functions for iface_to_hdm Menna Mahmoud
@ 2023-03-20 15:44 ` Greg KH
  2023-03-20 18:26   ` Menna Mahmoud
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2023-03-20 15:44 UTC (permalink / raw)
  To: Menna Mahmoud
  Cc: outreachy, parthiban.veerasooran, christian.gromm, drv, dave,
	yang.lee, linux-kernel, linux-staging, Julia Lawall

On Mon, Mar 20, 2023 at 12:33:35PM +0200, Menna Mahmoud wrote:
> Convert `iface_to_hdm` macro into a static inline function.
> it is not great to have macro that use `container_of` macro,
> because from looking at the definition one cannot tell
> what type it applies to.
> 
> One can get the same benefit from an efficiency point of view
> by making an inline function.
> 
> Suggested-by: Julia Lawall <julia.lawall@inria.fr>
> Signed-off-by: Menna Mahmoud <eng.mennamahmoud.mm@gmail.com>
> ---
>  drivers/staging/most/dim2/dim2.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)

Your subject line has a "  " when it should have just a " " :(

Please fix up and send a v2.

thanks,

greg k-h

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

* Re: [PATCH] staging: most: use inline functions for iface_to_hdm
  2023-03-20 15:44 ` Greg KH
@ 2023-03-20 18:26   ` Menna Mahmoud
  0 siblings, 0 replies; 3+ messages in thread
From: Menna Mahmoud @ 2023-03-20 18:26 UTC (permalink / raw)
  To: Greg KH
  Cc: outreachy, parthiban.veerasooran, christian.gromm, drv, dave,
	yang.lee, linux-kernel, linux-staging, Julia Lawall


On ٢٠‏/٣‏/٢٠٢٣ ١٧:٤٤, Greg KH wrote:
> On Mon, Mar 20, 2023 at 12:33:35PM +0200, Menna Mahmoud wrote:
>> Convert `iface_to_hdm` macro into a static inline function.
>> it is not great to have macro that use `container_of` macro,
>> because from looking at the definition one cannot tell
>> what type it applies to.
>>
>> One can get the same benefit from an efficiency point of view
>> by making an inline function.
>>
>> Suggested-by: Julia Lawall <julia.lawall@inria.fr>
>> Signed-off-by: Menna Mahmoud <eng.mennamahmoud.mm@gmail.com>
>> ---
>>   drivers/staging/most/dim2/dim2.c | 5 ++++-
>>   1 file changed, 4 insertions(+), 1 deletion(-)
> Your subject line has a "  " when it should have just a " " :(
I see, I will fix it.
>
> Please fix up and send a v2.
I will.
>
> thanks,
>
> greg k-h

Thanks,

Menna


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

end of thread, other threads:[~2023-03-20 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-20 10:33 [PATCH] staging: most: use inline functions for iface_to_hdm Menna Mahmoud
2023-03-20 15:44 ` Greg KH
2023-03-20 18:26   ` Menna Mahmoud

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).