uaccess.s

来自「是关于linux2.5.1的完全源码」· S 代码 · 共 52 行

S
52
字号
/* *  arch/s390/lib/uaccess.S *    fixup routines for copy_{from|to}_user functions. * *  s390 *    Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation *    Authors(s): Martin Schwidefsky (schwidefsky@de.ibm.com) * *  These functions have a non-standard call interface */#include <asm/lowcore.h>        .text        .align 4        .globl __copy_from_user_fixup__copy_from_user_fixup:        l     1,__LC_PGM_OLD_PSW+4        sll   4,1        srl   4,10:      lhi   3,-4096        sll   3,1        srl   3,1        n     3,__LC_TRANS_EXC_ADDR        sr    3,4        bm    4(1)1:      mvcle 2,4,0        b     4(1)        .section __ex_table,"a"	.long 1b,0b        .previous        .align 4        .text        .globl __copy_to_user_fixup__copy_to_user_fixup:        l     1,__LC_PGM_OLD_PSW+4        sll   4,1        srl   4,10:      lhi   5,-4096        sll   5,1        srl   5,1        n     5,__LC_TRANS_EXC_ADDR        sr    5,4        bm    4(1)1:      mvcle 4,2,0        b     4(1)        .section __ex_table,"a"        .long 1b,0b        .previous

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?