2.5.39 s390 (26/26): /proc/interrupts.

2.5.39 s390 (26/26): /proc/interrupts.

Post by Martin Schwidefsk » Tue, 01 Oct 2002 16:10:08



Don't create /proc/interrupts on s390.

diff -urN linux-2.5.39/drivers/s390/cio/proc.c linux-2.5.39-s390/drivers/s390/cio/proc.c
--- linux-2.5.39/drivers/s390/cio/proc.c        Mon Sep 30 13:25:21 2002

 #include <linux/config.h>
 #include <linux/init.h>
 #include <linux/proc_fs.h>
-#include <linux/seq_file.h>

 #include <asm/io.h>

 static int chan_proc_init (void);

-int show_interrupts(struct seq_file *p, void *v)
-{
-       int i, j;
-
-       seq_puts(p, "           ");
-
-       for (j=0; j<num_online_cpus(); j++)
-               seq_printf(p, "CPU%d       ",j);
-
-       seq_putc(p, '\n');
-
-       for (i = 0 ; i < NR_IRQS ; i++) {
-               if (ioinfo[i] == INVALID_STORAGE_AREA)
-                       continue;
-
-               seq_printf(p, "%3d: ",i);
-               seq_printf(p, "  %s", ioinfo[i]->irq_desc.name);
-
-               seq_putc(p, '\n');
-      
-       } /* endfor */
-
-       return 0;
-}
-
 /*
  * Display info on subchannels in /proc/subchannels.
  * Adapted from procfs stuff in dasd.c by Cornelia Huck, 02/28/01.      
diff -urN linux-2.5.39/fs/proc/proc_misc.c linux-2.5.39-s390/fs/proc/proc_misc.c
--- linux-2.5.39/fs/proc/proc_misc.c    Fri Sep 27 23:49:06 2002

        return proc_calc_metrics(page, start, off, count, eof, len);
 }

+#if !defined(CONFIG_ARCH_S390)
 extern int show_interrupts(struct seq_file *p, void *v);
 static int interrupts_open(struct inode *inode, struct file *file)

        llseek:         seq_lseek,
        release:        single_release,
 };
+#endif

 static int filesystems_read_proc(char *page, char **start, off_t off,

                entry->proc_fops = &proc_kmsg_operations;
        create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
        create_seq_entry("partitions", 0, &proc_partitions_operations);
+#if !defined(CONFIG_ARCH_S390)
        create_seq_entry("interrupts", 0, &proc_interrupts_operations);
+#endif
        create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
 #ifdef CONFIG_MODULES
        create_seq_entry("modules", 0, &proc_modules_operations);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in

More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/