cregit-Linux how code gets into the kernel

Release 4.14 arch/alpha/lib/udelay.c

Directory: arch/alpha/lib
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 1993, 2000 Linus Torvalds
 *
 * Delay routines, using a pre-computed "loops_per_jiffy" value.
 */

#include <linux/module.h>
#include <linux/sched.h> /* for udelay's use of smp_processor_id */
#include <asm/param.h>
#include <asm/smp.h>
#include <linux/delay.h>

/*
 * Use only for very small delays (< 1 msec). 
 *
 * The active part of our cycle counter is only 32-bits wide, and
 * we're treating the difference between two marks as signed.  On
 * a 1GHz box, that's about 2 seconds.
 */


void __delay(int loops) { int tmp; __asm__ __volatile__( " rpcc %0\n" " addl %1,%0,%1\n" "1: rpcc %0\n" " subl %1,%0,%0\n" " bgt %0,1b" : "=&r" (tmp), "=r" (loops) : "1"(loops)); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds14100.00%1100.00%
Total14100.00%1100.00%

EXPORT_SYMBOL(__delay); #ifdef CONFIG_SMP #define LPJ cpu_data[smp_processor_id()].loops_per_jiffy #else #define LPJ loops_per_jiffy #endif
void udelay(unsigned long usecs) { usecs *= (((unsigned long)HZ << 32) / 1000000) * LPJ; __delay((long)usecs >> 32); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds3594.59%150.00%
Richard Henderson25.41%150.00%
Total37100.00%2100.00%

EXPORT_SYMBOL(udelay);
void ndelay(unsigned long nsecs) { nsecs *= (((unsigned long)HZ << 32) / 1000000000) * LPJ; __delay((long)nsecs >> 32); }

Contributors

PersonTokensPropCommitsCommitProp
Richard Henderson2670.27%150.00%
Linus Torvalds1129.73%150.00%
Total37100.00%2100.00%

EXPORT_SYMBOL(ndelay);

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds7454.01%125.00%
Richard Henderson5741.61%125.00%
Sudip Mukherjee53.65%125.00%
Greg Kroah-Hartman10.73%125.00%
Total137100.00%4100.00%
Directory: arch/alpha/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.