Searched refs:pentry (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/fs/coda/ |
D | sysctl.c | 139 void do_time_stats( struct coda_upcall_stats_entry * pentry, in do_time_stats() argument 145 if ( pentry->count == 0 ) { in do_time_stats() 146 pentry->time_sum = pentry->time_squared_sum = 0; in do_time_stats() 149 pentry->count++; in do_time_stats() 150 pentry->time_sum += time; in do_time_stats() 151 pentry->time_squared_sum += time*time; in do_time_stats() 158 struct coda_upcall_stats_entry * pentry; in coda_upcall_stats() local 166 pentry = &coda_upcall_stat[opcode]; in coda_upcall_stats() 167 do_time_stats(pentry, runtime); in coda_upcall_stats() 170 pentry = &coda_upcall_stat[0]; in coda_upcall_stats() [all …]
|
/linux-2.4.37.9/include/linux/ |
D | coda_proc.h | 107 void do_time_stats( struct coda_upcall_stats_entry * pentry, 113 unsigned long get_time_average( const struct coda_upcall_stats_entry * pentry ); 114 unsigned long get_time_std_deviation( const struct coda_upcall_stats_entry * pentry );
|
/linux-2.4.37.9/net/802/ |
D | tr.c | 430 rif_cache entry, *pentry=rif_table+i; in rif_check_expire() local 431 while((entry=*pentry)) in rif_check_expire() 438 *pentry=entry->next; in rif_check_expire() 442 pentry=&entry->next; in rif_check_expire()
|
/linux-2.4.37.9/drivers/message/i2o/ |
D | i2o_proc.c | 3111 static int i2o_proc_create_entries(void *data, i2o_proc_entry *pentry, in i2o_proc_create_entries() argument 3116 while(pentry->name != NULL) in i2o_proc_create_entries() 3118 ent = create_proc_entry(pentry->name, pentry->mode, parent); in i2o_proc_create_entries() 3122 ent->read_proc = pentry->read_proc; in i2o_proc_create_entries() 3123 ent->write_proc = pentry->write_proc; in i2o_proc_create_entries() 3126 pentry++; in i2o_proc_create_entries() 3132 static void i2o_proc_remove_entries(i2o_proc_entry *pentry, in i2o_proc_remove_entries() argument 3135 while(pentry->name != NULL) in i2o_proc_remove_entries() 3137 remove_proc_entry(pentry->name, parent); in i2o_proc_remove_entries() 3138 pentry++; in i2o_proc_remove_entries()
|