* [PATCH v2] pvcalls-front: 64-bit align flags
@ 2018-03-01 2:05 Stefano Stabellini
2018-03-01 2:14 ` Boris Ostrovsky
2018-03-01 6:24 ` Juergen Gross
0 siblings, 2 replies; 3+ messages in thread
From: Stefano Stabellini @ 2018-03-01 2:05 UTC (permalink / raw)
To: jgross, boris.ostrovsky; +Cc: sstabellini, xen-devel, linux-kernel
We are using test_and_* operations on the status and flag fields of
struct sock_mapping. However, these functions require the operand to be
64-bit aligned on arm64. Currently, only status is 64-bit aligned.
Make status and flags explicitly 64-bit aligned.
Signed-off-by: Stefano Stabellini <stefano@aporeto.com>
---
Changes in v2:
- use __attribute__((aligned(8)))
- add comments
diff --git a/drivers/xen/pvcalls-front.c b/drivers/xen/pvcalls-front.c
index ca5b773..582929e 100644
--- a/drivers/xen/pvcalls-front.c
+++ b/drivers/xen/pvcalls-front.c
@@ -73,20 +73,25 @@ struct sock_mapping {
wait_queue_head_t inflight_conn_req;
} active;
struct {
- /* Socket status */
+ /*
+ * Socket status, needs to be 64-bit aligned due to the
+ * test_and_* functions which have this requirement on arm64.
+ */
#define PVCALLS_STATUS_UNINITALIZED 0
#define PVCALLS_STATUS_BIND 1
#define PVCALLS_STATUS_LISTEN 2
- uint8_t status;
+ uint8_t status __attribute__((aligned(8)));
/*
* Internal state-machine flags.
* Only one accept operation can be inflight for a socket.
* Only one poll operation can be inflight for a given socket.
+ * flags needs to be 64-bit aligned due to the test_and_*
+ * functions which have this requirement on arm64.
*/
#define PVCALLS_FLAG_ACCEPT_INFLIGHT 0
#define PVCALLS_FLAG_POLL_INFLIGHT 1
#define PVCALLS_FLAG_POLL_RET 2
- uint8_t flags;
+ uint8_t flags __attribute__((aligned(8)));
uint32_t inflight_req_id;
struct sock_mapping *accept_map;
wait_queue_head_t inflight_accept_req;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] pvcalls-front: 64-bit align flags
2018-03-01 2:05 [PATCH v2] pvcalls-front: 64-bit align flags Stefano Stabellini
@ 2018-03-01 2:14 ` Boris Ostrovsky
2018-03-01 6:24 ` Juergen Gross
1 sibling, 0 replies; 3+ messages in thread
From: Boris Ostrovsky @ 2018-03-01 2:14 UTC (permalink / raw)
To: Stefano Stabellini, jgross; +Cc: xen-devel, linux-kernel
On 02/28/2018 09:05 PM, Stefano Stabellini wrote:
> We are using test_and_* operations on the status and flag fields of
> struct sock_mapping. However, these functions require the operand to be
> 64-bit aligned on arm64. Currently, only status is 64-bit aligned.
>
> Make status and flags explicitly 64-bit aligned.
>
> Signed-off-by: Stefano Stabellini <stefano@aporeto.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] pvcalls-front: 64-bit align flags
2018-03-01 2:05 [PATCH v2] pvcalls-front: 64-bit align flags Stefano Stabellini
2018-03-01 2:14 ` Boris Ostrovsky
@ 2018-03-01 6:24 ` Juergen Gross
1 sibling, 0 replies; 3+ messages in thread
From: Juergen Gross @ 2018-03-01 6:24 UTC (permalink / raw)
To: Stefano Stabellini, boris.ostrovsky; +Cc: xen-devel, linux-kernel
On 01/03/18 03:05, Stefano Stabellini wrote:
> We are using test_and_* operations on the status and flag fields of
> struct sock_mapping. However, these functions require the operand to be
> 64-bit aligned on arm64. Currently, only status is 64-bit aligned.
>
> Make status and flags explicitly 64-bit aligned.
>
> Signed-off-by: Stefano Stabellini <stefano@aporeto.com>
Committed to xen/tip for-linus-4.16a
Juergen
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-01 6:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-01 2:05 [PATCH v2] pvcalls-front: 64-bit align flags Stefano Stabellini
2018-03-01 2:14 ` Boris Ostrovsky
2018-03-01 6:24 ` Juergen Gross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®