当前位置:  技术问答>linux和unix

请问linux的User helpers是干什么的?

    来源: 互联网  发布时间:2016-07-23

    本文导语:  弟兄们好,请问linux的User helpers是干什么的?我在arch/arm/kernel/entry-armv.S文件中看到的。  /*  * User helpers.  *  * These are segment of kernel provided user code reachable from user space  * at a fixed address in kernel memory. ...

弟兄们好,请问linux的User helpers是干什么的?我在arch/arm/kernel/entry-armv.S文件中看到的。 

/* 
* User helpers. 

* These are segment of kernel provided user code reachable from user space 
* at a fixed address in kernel memory.  This is used to provide user space 
* with some operations which require kernel help because of unimplemented 
* native feature and/or instructions in many ARM CPUs. The idea is for 
* this code to be executed directly in user mode for best efficiency but 
* which is too intimate with the kernel counter part to be left to user 
* libraries.  In fact this code might even differ from one CPU to another 
* depending on the available  instruction set and restrictions like on 
* SMP systems.  In other words, the kernel reserves the right to change 
* this code as needed without warning. Only the entry points and their 
* results are guaranteed to be stable. 

* Each segment is 32-byte aligned and will be moved to the top of the high 
* vector page.  New segments (if ever needed) must be added in front of 
* existing ones.  This mechanism should be used only for things that are 
* really small and justified, and not be abused freely. 

* User space is expected to implement those things inline when optimizing 
* for a processor that has the necessary native support, but only if such 
* resulting binaries are already to be incompatible with earlier ARM 
* processors due to the use of unsupported instructions other than what 
* is provided here.  In other words don't make binaries unable to run on 
* earlier processors just for the sake of not using these kernel helpers 
* if your compiled code is not going to use the new instructions for other 
* purpose. 
*/ 

.align 5 
.globl __kuser_helper_start 
__kuser_helper_start: 

/* 
* Reference prototype: 

* int __kernel_cmpxchg(int oldval, int newval, int *ptr) 

* Input: 

* r0 = oldval 
* r1 = newval 
* r2 = ptr 
* lr = return address 

* Output: 

* r0 = returned value (zero or non-zero) 
* C flag = set if r0 == 0, clear if r0 != 0 

* Clobbered: 

* r3, ip, flags 

* Definition and user space usage example: 

* typedef int (__kernel_cmpxchg_t)(int oldval, int newval, int *ptr); 
* #define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0) 

* Atomically store newval in *ptr if *ptr is equal to oldval for user space. 
* Return zero if *ptr was changed or non-zero if no exchange happened. 
* The C flag is also set if *ptr was changed to allow for assembly 
* optimization in the calling code. 

* For example, a user space atomic_add implementation could look like this: 

* #define atomic_add(ptr, val)  
* ({ register unsigned int *__ptr asm("r2") = (ptr);  
*  register unsigned int __result asm("r1");  
*  asm volatile (  
*      "1: @ atomic_addnt"  
*      "ldr r0, [r2]nt"  
*      "mov r3, #0xffff0fffnt"  
*      "add lr, pc, #4nt"  
*      "add r1, r0, %2nt"  
*      "add pc, r3, #(0xffff0fc0 - 0xffff0fff)nt"  
*      "bcc 1b"  
*      : "=&r" (__result)  
*      : "r" (__ptr), "rIL" (val)  
*      : "r0","r3","ip","lr","cc","memory" );  
*  __result; }) 
*/ 

__kuser_cmpxchg: @ 0xffff0fc0 

#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 

/* 
* Poor you.  No fast solution possible... 
* The kernel itself must perform the operation. 
* A special ghost syscall is used for that (see traps.c). 
*/ 
swi #0x9ffff0 
mov pc, lr 

#elif __LINUX_ARM_ARCH__ > 5) 

.globl __kuser_helper_end 
__kuser_helper_end: 

|
In other words don't make binaries unable to run on 
* earlier processors just for the sake of not using these kernel helpers 
* if your compiled code is not going to use the new instructions for other 
* purpose. 

  处理器兼容问题吧,自己仔细翻译一下啊。

|
up一下   没有注意过 

    
 
 

您可能感兴趣的文章:

  • 请问各位mysql是什么,干什么用的?
  • 请问编译器是干什么用的
  • 请问Float.NaN什么意思?拿来干什么用?麻烦举个例子说明
  • 请问jdatastore是干什么的?
  • c/c++ iis7站长之家
  • 请问:iptables这个命令是干什么用的啊
  • 请问Linux Kernel RD工程师是干什么工作,最好具体点?
  • 请问,JBUILDER6里面,VisiBroker是干什么用的???
  • 请问TreeCellRenderer接口主要用来干什么啊?
  • 请问Inprise Application Server 4.1是干什么用的?
  • APUE初学者:请问dup,dup2函数可以用来干什么?有什么好处?
  • 请问宏#define SYMBOL_NAME_STR(X) #X干什么用啊
  • 请问 set-uid是 干什么用的
  • 请问java.lang.reflect这个包(反射)的主要用途?java.lang.reflect.Method这个类是干什么用的?
  • 请问函数proc_calc_metrics是干什么用的?
  • 我下载j2sdk1.4的时候发现还有另一下包j2re1.4,请问j2re是干什么用的,它是用来支持什么东西的?
  • 请问:netstat这个命令能用来干什么啊?
  • 请问各位~现在学什么、学到什么程度或者干什么、在哪里干能年薪十万或者更多~多谢参加讨论~~:)
  • 请问:select函数是干什么用的啊,有没有相关的例子啊?
  • 请问linux的Userspace helper是干什么的?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 搞了几年软件开发,Linux没有摸过,请问安装Linux什么版本比较好
  • 请问LINUX内核下,哪些文件夹下的文件是跟LINUX的硬件平台无关的?
  • 请问初学习Linux及Linux下编程的好书?
  • 我下载了一个LINUX,是.ISO文件格式的,请问怎么在用硬盘安装LINUX啊?
  • 请问:除了Red Hat Linux还有什么其他什么Linux?
  • 请问高手在linux中用什么命令可以做linux的启动盘???在等待高手??
  • 以前没有接触过linux,现要在linux上写一个软件,请问我要看那些资料!
  • 我想用Linux的串口和S3c2410x连接,请问在Linux里面怎么找到那个超级终端?
  • 初学Linux要看什么书?, 请问Linux下C语言编程怎么设置环境?
  • 本人想学习linux,请问哪里有比较小的linux版本
  • 请问:构建嵌入式linux环境时,“Linux内核的移植”是达到什么目的啊?
  • 初用Linux,请问各位大侠,哪一款Linux支持Oracle9i
  • 请问windows 2000怎么访问linux?我要从linux下拷文件到windows下
  • 先装LINUX 10后装XP,启动进不了Linux,请问怎么解决?
  • 为什么linux下的C++程序这么少见? 请问那里有linux下的C++程序?什么类型的程序都可以.
  • 想学习linux 编程,请问一下,用什么版本的linux好啊,什么地方有下载?谢了
  • 请问哪有 arm-linux-nm, arm-linux-addr2line等等这些工具的使用说明~~~
  • 请问各位大虾:笔记本安装Linux的多吗?还有,笔记本对Linux的支持好吗?
  • 请问在高版本linux编译链接的程序如何在低版本Linux上运行
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3