[S390] Cleanup s390 debug feature print messages.
Signed-off-by: Michael Holzheu <holzheu@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
committed by
Heiko Carstens
parent
2ca5b6e288
commit
21b21fc4f4
@@ -1079,7 +1079,6 @@ __init debug_init(void)
|
|||||||
s390dbf_sysctl_header = register_sysctl_table(s390dbf_dir_table);
|
s390dbf_sysctl_header = register_sysctl_table(s390dbf_dir_table);
|
||||||
mutex_lock(&debug_mutex);
|
mutex_lock(&debug_mutex);
|
||||||
debug_debugfs_root_entry = debugfs_create_dir(DEBUG_DIR_ROOT,NULL);
|
debug_debugfs_root_entry = debugfs_create_dir(DEBUG_DIR_ROOT,NULL);
|
||||||
printk(KERN_INFO "debug: Initialization complete\n");
|
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
mutex_unlock(&debug_mutex);
|
mutex_unlock(&debug_mutex);
|
||||||
|
|
||||||
@@ -1193,7 +1192,6 @@ debug_get_uint(char *buf)
|
|||||||
for(; isspace(*buf); buf++);
|
for(; isspace(*buf); buf++);
|
||||||
rc = simple_strtoul(buf, &buf, 10);
|
rc = simple_strtoul(buf, &buf, 10);
|
||||||
if(*buf){
|
if(*buf){
|
||||||
printk("debug: no integer specified!\n");
|
|
||||||
rc = -EINVAL;
|
rc = -EINVAL;
|
||||||
}
|
}
|
||||||
return rc;
|
return rc;
|
||||||
@@ -1340,19 +1338,12 @@ static void debug_flush(debug_info_t* id, int area)
|
|||||||
memset(id->areas[i][j], 0, PAGE_SIZE);
|
memset(id->areas[i][j], 0, PAGE_SIZE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printk(KERN_INFO "debug: %s: all areas flushed\n",id->name);
|
|
||||||
} else if(area >= 0 && area < id->nr_areas) {
|
} else if(area >= 0 && area < id->nr_areas) {
|
||||||
id->active_entries[area] = 0;
|
id->active_entries[area] = 0;
|
||||||
id->active_pages[area] = 0;
|
id->active_pages[area] = 0;
|
||||||
for(i = 0; i < id->pages_per_area; i++) {
|
for(i = 0; i < id->pages_per_area; i++) {
|
||||||
memset(id->areas[area][i],0,PAGE_SIZE);
|
memset(id->areas[area][i],0,PAGE_SIZE);
|
||||||
}
|
}
|
||||||
printk(KERN_INFO "debug: %s: area %i has been flushed\n",
|
|
||||||
id->name, area);
|
|
||||||
} else {
|
|
||||||
printk(KERN_INFO
|
|
||||||
"debug: %s: area %i cannot be flushed (range: %i - %i)\n",
|
|
||||||
id->name, area, 0, id->nr_areas-1);
|
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&id->lock,flags);
|
spin_unlock_irqrestore(&id->lock,flags);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user