mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 09:26:44 +07:00
ee841d0aff
Report the exact number of bytes which have not been successfully copied when an exception occurs, using the running remaining length. Signed-off-by: David S. Miller <davem@davemloft.net>
27 lines
523 B
ArmAsm
27 lines
523 B
ArmAsm
/* U3copy_from_user.S: UltraSparc-III optimized copy from userspace.
|
|
*
|
|
* Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com)
|
|
*/
|
|
|
|
#define EX_LD(x,y) \
|
|
98: x; \
|
|
.section __ex_table,"a";\
|
|
.align 4; \
|
|
.word 98b, y; \
|
|
.text; \
|
|
.align 4;
|
|
|
|
#define EX_LD_FP(x,y) \
|
|
98: x; \
|
|
.section __ex_table,"a";\
|
|
.align 4; \
|
|
.word 98b, y##_fp; \
|
|
.text; \
|
|
.align 4;
|
|
|
|
#define FUNC_NAME U3copy_from_user
|
|
#define LOAD(type,addr,dest) type##a [addr] %asi, dest
|
|
#define EX_RETVAL(x) 0
|
|
|
|
#include "U3memcpy.S"
|