There is no such thing as /dev/cpu/mtrr.

This commit is contained in:
Adam Jackson 2008-01-22 18:57:11 -05:00
parent be6c17fcf9
commit cc22b05ea0

View File

@ -142,17 +142,8 @@ mtrr_open(int verbosity)
/* Only report absence of /proc/mtrr once. */
static Bool warned = FALSE;
char **fn;
static char *mtrr_files[] = {
"/dev/cpu/mtrr", /* Possible future name */
"/proc/mtrr", /* Current name */
NULL
};
if (mtrr_fd == MTRR_FD_UNOPENED) {
/* So open it. */
for (fn = mtrr_files; mtrr_fd < 0 && *fn; fn++)
mtrr_fd = open(*fn, O_WRONLY);
mtrr_fd = open("/proc/mtrr", O_WRONLY);
if (mtrr_fd < 0)
mtrr_fd = MTRR_FD_PROBLEM;