cregit-Linux how code gets into the kernel

Release 4.10 arch/powerpc/math-emu/fctiw.c

#include <linux/types.h>
#include <linux/errno.h>
#include <linux/uaccess.h>

#include <asm/sfp-machine.h>
#include <math-emu/soft-fp.h>
#include <math-emu/double.h>


int fctiw(u32 *frD, void *frB) { FP_DECL_D(B); FP_DECL_EX; unsigned int r; FP_UNPACK_DP(B, frB); FP_TO_INT_D(r, B, 32, 1); frD[1] = r; #ifdef DEBUG printk("%s: D %p, B %p: ", __func__, frD, frB); dump_double(frD); printk("\n"); #endif return 0; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git7494.87%360.00%
kumar galakumar gala33.85%120.00%
harvey harrisonharvey harrison11.28%120.00%
Total78100.00%5100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git8689.58%350.00%
kumar galakumar gala88.33%116.67%
harvey harrisonharvey harrison11.04%116.67%
linus torvaldslinus torvalds11.04%116.67%
Total96100.00%6100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.