]> Git Repo - linux.git/blobdiff - fs/proc/kcore.c
tty: move a number of tty drivers from drivers/char/ to drivers/tty/
[linux.git] / fs / proc / kcore.c
index 19979a2ce27204d1851c96bc3126fd201a68651f..d245cb23dd726206806304022d0c83a0ab784656 100644 (file)
@@ -558,6 +558,7 @@ static int open_kcore(struct inode *inode, struct file *filp)
 static const struct file_operations proc_kcore_operations = {
        .read           = read_kcore,
        .open           = open_kcore,
+       .llseek         = default_llseek,
 };
 
 #ifdef CONFIG_MEMORY_HOTPLUG
@@ -587,7 +588,7 @@ static struct kcore_list kcore_text;
  */
 static void __init proc_kcore_text_init(void)
 {
-       kclist_add(&kcore_text, _stext, _end - _stext, KCORE_TEXT);
+       kclist_add(&kcore_text, _text, _end - _text, KCORE_TEXT);
 }
 #else
 static void __init proc_kcore_text_init(void)
This page took 0.037308 seconds and 4 git commands to generate.