n_to_m_cache
struct n_to_m_cache *next;
static struct n_to_m_cache *head = NULL;
struct n_to_m_cache *ptr;
ptr = (struct n_to_m_cache *)calloc(1,
sizeof (struct n_to_m_cache));
char **n_to_m_cache = NULL;
return (get_cached_n_to_m_file(file_name, &n_to_m_cache));
char **n_to_m_cache = NULL;
size = get_cached_n_to_m_file(file_name, &n_to_m_cache);
if ((n_to_m_cache[maj] != NULL) &&
(strcmp(driver_name, n_to_m_cache[maj]) == 0)) {
if (n_to_m_cache[*major_no] != NULL) {
(void) strcpy(driver_name, n_to_m_cache[*major_no]);