From: Ben Pfaff Date: Fri, 29 May 2009 22:58:50 +0000 (-0700) Subject: xenserver: Load llc module at boot time. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f0a2f9d7db15e5cf515b4caaaa241fbdc107d53;p=openvswitch xenserver: Load llc module at boot time. Fixes boot failure due to previous commit, which made the openvswitch module depend on llc without causing it to be loaded. --- diff --git a/xenserver/etc_init.d_vswitch b/xenserver/etc_init.d_vswitch index 573fb695..25aca61f 100755 --- a/xenserver/etc_init.d_vswitch +++ b/xenserver/etc_init.d_vswitch @@ -92,6 +92,7 @@ function remove_all_dp { function insert_modules_if_required { if ! lsmod | grep -q "openvswitch_mod"; then + action "Inserting llc module" modprobe llc action "Inserting openvswitch module" insmod $VSWITCH_BASE/kernel_modules/openvswitch_mod.ko fi if [ -n "$BRCOMPATD_PIDFILE" ] && ! lsmod | grep -q "brcompat_mod"; then