lfs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.lfs.c 1.6 05/17/01 18:14:23 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7. #include "soft-fp.h"
  8. #include "double.h"
  9. #include "single.h"
  10. int
  11. lfs(void *frD, void *ea)
  12. {
  13. FP_DECL_D(R);
  14. FP_DECL_S(A);
  15. float f;
  16. #ifdef DEBUG
  17. printk("%s: D %p, ea %pn", __FUNCTION__, frD, ea);
  18. #endif
  19. if (copy_from_user(&f, ea, sizeof(float)))
  20. return -EFAULT;
  21. __FP_UNPACK_S(A, &f);
  22. #ifdef DEBUG
  23. printk("A: %ld %lu %ld (%ld) [%08lx]n", A_s, A_f, A_e, A_c,
  24.        *(unsigned long *)&f);
  25. #endif
  26. FP_CONV(D, S, 2, 1, R, A);
  27. #ifdef DEBUG
  28. printk("R: %ld %lu %lu %ld (%ld)n", R_s, R_f1, R_f0, R_e, R_c);
  29. #endif
  30. return __FP_PACK_D(frD, R);
  31. }