Symbol: cdev_record
drivers/thermal/thermal_debugfs.c
223
static struct cdev_record *
drivers/thermal/thermal_debugfs.c
227
struct cdev_record *cdev_record;
drivers/thermal/thermal_debugfs.c
229
cdev_record = kzalloc_obj(*cdev_record);
drivers/thermal/thermal_debugfs.c
230
if (!cdev_record)
drivers/thermal/thermal_debugfs.c
233
cdev_record->id = id;
drivers/thermal/thermal_debugfs.c
234
INIT_LIST_HEAD(&cdev_record->node);
drivers/thermal/thermal_debugfs.c
235
list_add_tail(&cdev_record->node,
drivers/thermal/thermal_debugfs.c
236
&lists[cdev_record->id % CDEVSTATS_HASH_SIZE]);
drivers/thermal/thermal_debugfs.c
238
return cdev_record;
drivers/thermal/thermal_debugfs.c
241
static struct cdev_record *
drivers/thermal/thermal_debugfs.c
245
struct cdev_record *entry;
drivers/thermal/thermal_debugfs.c
254
static struct cdev_record *
drivers/thermal/thermal_debugfs.c
258
struct cdev_record *cdev_record;
drivers/thermal/thermal_debugfs.c
260
cdev_record = thermal_debugfs_cdev_record_find(thermal_dbg, lists, id);
drivers/thermal/thermal_debugfs.c
261
if (cdev_record)
drivers/thermal/thermal_debugfs.c
262
return cdev_record;
drivers/thermal/thermal_debugfs.c
270
struct cdev_record *entry, *tmp;
drivers/thermal/thermal_debugfs.c
318
struct cdev_record *entry;
drivers/thermal/thermal_debugfs.c
354
struct cdev_record *entry;
drivers/thermal/thermal_debugfs.c
413
struct cdev_record *cdev_record;
drivers/thermal/thermal_debugfs.c
431
cdev_record = thermal_debugfs_cdev_record_get(thermal_dbg,
drivers/thermal/thermal_debugfs.c
434
if (cdev_record) {
drivers/thermal/thermal_debugfs.c
437
cdev_record->residency = ktime_add(cdev_record->residency, delta);
drivers/thermal/thermal_debugfs.c
458
cdev_record = thermal_debugfs_cdev_record_get(thermal_dbg,
drivers/thermal/thermal_debugfs.c
461
if (cdev_record)
drivers/thermal/thermal_debugfs.c
462
cdev_record->count++;