nubus: Don't list slot resources by default
authorFinn Thain <fthain@linux-m68k.org>
Tue, 16 May 2023 01:22:05 +0000 (11:22 +1000)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 22 May 2023 11:51:56 +0000 (13:51 +0200)
Some Nubus card ROMs contain many slot resources. A single Radius video
card produced well over a thousand entries under /proc/bus/nubus/.
Populating /proc/bus/nubus/ on a slow machine with several such cards
installed takes long enough that the user may think that the system is
wedged. All those procfs entries also consume significant RAM though
they are not normally needed (except by developers).
Omit these resources from /proc/bus/nubus/ by default and add a kernel
parameter to enable them when needed.
On the test machine, this saved 300 kB and 10 seconds.

Cc: Brad Boyer <flar@allandria.com>
Reviewed-by: Brad Boyer <flar@allandria.com>
Tested-by: Stan Johnson <userm57@yahoo.com>
Signed-off-by: Finn Thain <fthain@linux-m68k.org>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/71ed7fb234a5f7381a50253b0d841a656d53e64c.1684200125.git.fthain@linux-m68k.org
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
drivers/nubus/nubus.c
drivers/nubus/proc.c
include/linux/nubus.h

index f70ba58dbc557b27fd5408c680d330d2c3cd84ff..ab0f32b901c84f52045096a904a5f50996eab30f 100644 (file)
 
 /* Globals */
 
+/* The "nubus.populate_procfs" parameter makes slot resources available in
+ * procfs. It's deprecated and disabled by default because procfs is no longer
+ * thought to be suitable for that and some board ROMs make it too expensive.
+ */
+bool nubus_populate_procfs;
+module_param_named(populate_procfs, nubus_populate_procfs, bool, 0);
+
 LIST_HEAD(nubus_func_rsrcs);
 
 /* Meaning of "bytelanes":
@@ -572,9 +579,9 @@ nubus_get_functional_resource(struct nubus_board *board, int slot,
                        nubus_proc_add_rsrc(dir.procdir, &ent);
                        break;
                default:
-                       /* Local/Private resources have their own
-                          function */
-                       nubus_get_private_resource(fres, dir.procdir, &ent);
+                       if (nubus_populate_procfs)
+                               nubus_get_private_resource(fres, dir.procdir,
+                                                          &ent);
                }
        }
 
index 2c320a84fd72c830ce2386c117d6f8fe538032a9..e7a347db708c26a558ab1529deaccdf67a42138a 100644 (file)
@@ -55,7 +55,7 @@ struct proc_dir_entry *nubus_proc_add_board(struct nubus_board *board)
 {
        char name[2];
 
-       if (!proc_bus_nubus_dir)
+       if (!proc_bus_nubus_dir || !nubus_populate_procfs)
                return NULL;
        snprintf(name, sizeof(name), "%x", board->slot);
        return proc_mkdir(name, proc_bus_nubus_dir);
@@ -72,7 +72,7 @@ struct proc_dir_entry *nubus_proc_add_rsrc_dir(struct proc_dir_entry *procdir,
        char name[9];
        int lanes = board->lanes;
 
-       if (!procdir)
+       if (!procdir || !nubus_populate_procfs)
                return NULL;
        snprintf(name, sizeof(name), "%x", ent->type);
        remove_proc_subtree(name, procdir);
@@ -157,7 +157,7 @@ void nubus_proc_add_rsrc_mem(struct proc_dir_entry *procdir,
        char name[9];
        struct nubus_proc_pde_data *pded;
 
-       if (!procdir)
+       if (!procdir || !nubus_populate_procfs)
                return;
 
        snprintf(name, sizeof(name), "%x", ent->type);
@@ -176,7 +176,7 @@ void nubus_proc_add_rsrc(struct proc_dir_entry *procdir,
        char name[9];
        unsigned char *data = (unsigned char *)ent->data;
 
-       if (!procdir)
+       if (!procdir || !nubus_populate_procfs)
                return;
 
        snprintf(name, sizeof(name), "%x", ent->type);
index 392fc6c53e9613081e9baef4d732876337546967..bdcd85e622d80f0d1fd7842ad892f08a525dd524 100644 (file)
@@ -93,6 +93,7 @@ extern struct bus_type nubus_bus_type;
 
 /* Generic NuBus interface functions, modelled after the PCI interface */
 #ifdef CONFIG_PROC_FS
+extern bool nubus_populate_procfs;
 void nubus_proc_init(void);
 struct proc_dir_entry *nubus_proc_add_board(struct nubus_board *board);
 struct proc_dir_entry *nubus_proc_add_rsrc_dir(struct proc_dir_entry *procdir,