netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net/af_iucv: fix virtual vs physical address confusion
@ 2024-02-15  8:05 Alexander Gordeev
  2024-02-15 13:36 ` Alexandra Winter
  2024-02-23  2:40 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 6+ messages in thread
From: Alexander Gordeev @ 2024-02-15  8:05 UTC (permalink / raw)
  To: Alexandra Winter, Thorsten Winkler; +Cc: linux-s390, netdev, linux-kernel

Fix virtual vs physical address confusion. This does not fix a bug
since virtual and physical address spaces are currently the same.

Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
---
 net/iucv/af_iucv.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
index 498a0c35b7bb..4aa1c72e6c49 100644
--- a/net/iucv/af_iucv.c
+++ b/net/iucv/af_iucv.c
@@ -1060,13 +1060,12 @@ static int iucv_sock_sendmsg(struct socket *sock, struct msghdr *msg,
 			int i;
 
 			/* skip iucv_array lying in the headroom */
-			iba[0].address = (u32)(addr_t)skb->data;
+			iba[0].address = (u32)virt_to_phys(skb->data);
 			iba[0].length = (u32)skb_headlen(skb);
 			for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
 				skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
 
-				iba[i + 1].address =
-					(u32)(addr_t)skb_frag_address(frag);
+				iba[i + 1].address = (u32)virt_to_phys(skb_frag_address(frag));
 				iba[i + 1].length = (u32)skb_frag_size(frag);
 			}
 			err = pr_iucv->message_send(iucv->path, &txmsg,
@@ -1162,13 +1161,12 @@ static void iucv_process_message(struct sock *sk, struct sk_buff *skb,
 			struct iucv_array *iba = (struct iucv_array *)skb->head;
 			int i;
 
-			iba[0].address = (u32)(addr_t)skb->data;
+			iba[0].address = (u32)virt_to_phys(skb->data);
 			iba[0].length = (u32)skb_headlen(skb);
 			for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
 				skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
 
-				iba[i + 1].address =
-					(u32)(addr_t)skb_frag_address(frag);
+				iba[i + 1].address = (u32)virt_to_phys(skb_frag_address(frag));
 				iba[i + 1].length = (u32)skb_frag_size(frag);
 			}
 			rc = pr_iucv->message_receive(path, msg,
-- 
2.40.1


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

* Re: [PATCH] net/af_iucv: fix virtual vs physical address confusion
  2024-02-15  8:05 [PATCH] net/af_iucv: fix virtual vs physical address confusion Alexander Gordeev
@ 2024-02-15 13:36 ` Alexandra Winter
  2024-02-21 22:31   ` Jakub Kicinski
  2024-02-23  2:40 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 6+ messages in thread
From: Alexandra Winter @ 2024-02-15 13:36 UTC (permalink / raw)
  To: Alexander Gordeev, Thorsten Winkler; +Cc: linux-s390, netdev, linux-kernel



On 15.02.24 09:05, Alexander Gordeev wrote:
> Fix virtual vs physical address confusion. This does not fix a bug
> since virtual and physical address spaces are currently the same.
> 
> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
> ---
>  net/iucv/af_iucv.c | 10 ++++------
>  1 file changed, 4 insertions(+), 6 deletions(-)
> 
> diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
> index 498a0c35b7bb..4aa1c72e6c49 100644
> --- a/net/iucv/af_iucv.c
> +++ b/net/iucv/af_iucv.c
> @@ -1060,13 +1060,12 @@ static int iucv_sock_sendmsg(struct socket *sock, struct msghdr *msg,
>  			int i;
>  
>  			/* skip iucv_array lying in the headroom */
> -			iba[0].address = (u32)(addr_t)skb->data;
> +			iba[0].address = (u32)virt_to_phys(skb->data);
>  			iba[0].length = (u32)skb_headlen(skb);
>  			for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
>  				skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
>  
> -				iba[i + 1].address =
> -					(u32)(addr_t)skb_frag_address(frag);
> +				iba[i + 1].address = (u32)virt_to_phys(skb_frag_address(frag));
>  				iba[i + 1].length = (u32)skb_frag_size(frag);
>  			}
>  			err = pr_iucv->message_send(iucv->path, &txmsg,
> @@ -1162,13 +1161,12 @@ static void iucv_process_message(struct sock *sk, struct sk_buff *skb,
>  			struct iucv_array *iba = (struct iucv_array *)skb->head;
>  			int i;
>  
> -			iba[0].address = (u32)(addr_t)skb->data;
> +			iba[0].address = (u32)virt_to_phys(skb->data);
>  			iba[0].length = (u32)skb_headlen(skb);
>  			for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
>  				skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
>  
> -				iba[i + 1].address =
> -					(u32)(addr_t)skb_frag_address(frag);
> +				iba[i + 1].address = (u32)virt_to_phys(skb_frag_address(frag));
>  				iba[i + 1].length = (u32)skb_frag_size(frag);
>  			}
>  			rc = pr_iucv->message_receive(path, msg,


Reviewed-by: Alexandra Winter <wintera@linux.ibm.com>

I would have preferred to do all the translations in __iucv_* functions in iucv.c,
but I understand that for __iucv_message_receive() this would mean significant changes. 

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

* Re: [PATCH] net/af_iucv: fix virtual vs physical address confusion
  2024-02-15 13:36 ` Alexandra Winter
@ 2024-02-21 22:31   ` Jakub Kicinski
  2024-02-22 14:41     ` Alexandra Winter
  0 siblings, 1 reply; 6+ messages in thread
From: Jakub Kicinski @ 2024-02-21 22:31 UTC (permalink / raw)
  To: Alexandra Winter
  Cc: Alexander Gordeev, Thorsten Winkler, linux-s390, netdev,
	linux-kernel

On Thu, 15 Feb 2024 14:36:57 +0100 Alexandra Winter wrote:
> I would have preferred to do all the translations in __iucv_* functions in iucv.c,
> but I understand that for __iucv_message_receive() this would mean significant changes. 

FWIW we're assuming this is going via the s390 tree.
Please let us know if you prefer networking to pick it up.

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

* Re: [PATCH] net/af_iucv: fix virtual vs physical address confusion
  2024-02-21 22:31   ` Jakub Kicinski
@ 2024-02-22 14:41     ` Alexandra Winter
  2024-02-23  2:29       ` Jakub Kicinski
  0 siblings, 1 reply; 6+ messages in thread
From: Alexandra Winter @ 2024-02-22 14:41 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Alexander Gordeev, Thorsten Winkler, linux-s390, netdev,
	linux-kernel



On 21.02.24 23:31, Jakub Kicinski wrote:
> On Thu, 15 Feb 2024 14:36:57 +0100 Alexandra Winter wrote:
>> I would have preferred to do all the translations in __iucv_* functions in iucv.c,
>> but I understand that for __iucv_message_receive() this would mean significant changes. 
> 
> FWIW we're assuming this is going via the s390 tree.
> Please let us know if you prefer networking to pick it up.
> 

Hello Jakub and maintainers,

please take this patch via net-next, as it belongs to the net/iucv module.
Please excuse that it was not flagged with [PATCH net-next]

Kind regards
Alexandra

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

* Re: [PATCH] net/af_iucv: fix virtual vs physical address confusion
  2024-02-22 14:41     ` Alexandra Winter
@ 2024-02-23  2:29       ` Jakub Kicinski
  0 siblings, 0 replies; 6+ messages in thread
From: Jakub Kicinski @ 2024-02-23  2:29 UTC (permalink / raw)
  To: Alexandra Winter
  Cc: Alexander Gordeev, Thorsten Winkler, linux-s390, netdev,
	linux-kernel

On Thu, 22 Feb 2024 15:41:23 +0100 Alexandra Winter wrote:
> > FWIW we're assuming this is going via the s390 tree.
> > Please let us know if you prefer networking to pick it up.
> 
> Hello Jakub and maintainers,
> 
> please take this patch via net-next, as it belongs to the net/iucv module.
> Please excuse that it was not flagged with [PATCH net-next]

Done! Hopefully nobody screams at us for the use of virt_to_phys() :)

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

* Re: [PATCH] net/af_iucv: fix virtual vs physical address confusion
  2024-02-15  8:05 [PATCH] net/af_iucv: fix virtual vs physical address confusion Alexander Gordeev
  2024-02-15 13:36 ` Alexandra Winter
@ 2024-02-23  2:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-02-23  2:40 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: wintera, twinkler, linux-s390, netdev, linux-kernel

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu, 15 Feb 2024 09:05:00 +0100 you wrote:
> Fix virtual vs physical address confusion. This does not fix a bug
> since virtual and physical address spaces are currently the same.
> 
> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
> ---
>  net/iucv/af_iucv.c | 10 ++++------
>  1 file changed, 4 insertions(+), 6 deletions(-)

Here is the summary with links:
  - net/af_iucv: fix virtual vs physical address confusion
    https://git.kernel.org/netdev/net-next/c/9eda38dc9150

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2024-02-23  2:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-15  8:05 [PATCH] net/af_iucv: fix virtual vs physical address confusion Alexander Gordeev
2024-02-15 13:36 ` Alexandra Winter
2024-02-21 22:31   ` Jakub Kicinski
2024-02-22 14:41     ` Alexandra Winter
2024-02-23  2:29       ` Jakub Kicinski
2024-02-23  2:40 ` patchwork-bot+netdevbpf

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