Home
last modified time | relevance | path

Searched refs:fcount (Results 1 – 1 of 1) sorted by relevance

/arch/x86/kernel/cpu/mtrr/
Dif.c41 unsigned int *fcount = FILE_FCOUNT(file); in mtrr_file_add() local
45 if (fcount == NULL) { in mtrr_file_add()
46 fcount = kzalloc(max * sizeof *fcount, GFP_KERNEL); in mtrr_file_add()
47 if (!fcount) in mtrr_file_add()
49 FILE_FCOUNT(file) = fcount; in mtrr_file_add()
59 ++fcount[reg]; in mtrr_file_add()
67 unsigned int *fcount = FILE_FCOUNT(file); in mtrr_file_del() local
79 if (fcount == NULL) in mtrr_file_del()
81 if (fcount[reg] < 1) in mtrr_file_del()
83 --fcount[reg]; in mtrr_file_del()
[all …]