Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpvfs In addition to initializing the buf...



details:   https://anonhg.NetBSD.org/src/rev/73e4089da5cc
branches:  trunk
changeset: 348958:73e4089da5cc
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Thu Nov 17 23:15:38 2016 +0000

description:
In addition to initializing the bufq subsystem, we also need to init
the individual strategy modules.

diffstat:

 sys/rump/librump/rumpvfs/rump_vfs.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 0132ea1f2a18 -r 73e4089da5cc sys/rump/librump/rumpvfs/rump_vfs.c
--- a/sys/rump/librump/rumpvfs/rump_vfs.c       Thu Nov 17 17:30:22 2016 +0000
+++ b/sys/rump/librump/rumpvfs/rump_vfs.c       Thu Nov 17 23:15:38 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump_vfs.c,v 1.85 2016/11/16 23:24:47 pgoyette Exp $   */
+/*     $NetBSD: rump_vfs.c,v 1.86 2016/11/17 23:15:38 pgoyette Exp $   */
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.85 2016/11/16 23:24:47 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.86 2016/11/17 23:15:38 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -171,6 +171,7 @@
                }
        }
 
+       module_init_class(MODULE_CLASS_BUFQ);
        module_init_class(MODULE_CLASS_VFS);
 
        /*



Home | Main Index | Thread Index | Old Index