rseq: Optimise rseq_get_rseq_cs() and clear_rseq_cs()
[ Upstream commit 5e0ccd4a3b01c5a71732a13186ca110a138516ea ]
Commit ec9c82e03a
("rseq: uapi: Declare rseq_cs field as union,
update includes") added regressions for our servers.
Using copy_from_user() and clear_user() for 64bit values
is suboptimal.
We can use faster put_user() and get_user() on 64bit arches.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Link: https://lkml.kernel.org/r/20210413203352.71350-4-eric.dumazet@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
ecc17de4b9
commit
f0250e05e5
@@ -120,8 +120,13 @@ static int rseq_get_rseq_cs(struct task_struct *t, struct rseq_cs *rseq_cs)
|
|||||||
u32 sig;
|
u32 sig;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
#ifdef CONFIG_64BIT
|
||||||
|
if (get_user(ptr, &t->rseq->rseq_cs.ptr64))
|
||||||
|
return -EFAULT;
|
||||||
|
#else
|
||||||
if (copy_from_user(&ptr, &t->rseq->rseq_cs.ptr64, sizeof(ptr)))
|
if (copy_from_user(&ptr, &t->rseq->rseq_cs.ptr64, sizeof(ptr)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
#endif
|
||||||
if (!ptr) {
|
if (!ptr) {
|
||||||
memset(rseq_cs, 0, sizeof(*rseq_cs));
|
memset(rseq_cs, 0, sizeof(*rseq_cs));
|
||||||
return 0;
|
return 0;
|
||||||
@@ -204,9 +209,13 @@ static int clear_rseq_cs(struct task_struct *t)
|
|||||||
*
|
*
|
||||||
* Set rseq_cs to NULL.
|
* Set rseq_cs to NULL.
|
||||||
*/
|
*/
|
||||||
|
#ifdef CONFIG_64BIT
|
||||||
|
return put_user(0UL, &t->rseq->rseq_cs.ptr64);
|
||||||
|
#else
|
||||||
if (clear_user(&t->rseq->rseq_cs.ptr64, sizeof(t->rseq->rseq_cs.ptr64)))
|
if (clear_user(&t->rseq->rseq_cs.ptr64, sizeof(t->rseq->rseq_cs.ptr64)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user