You are not logged in.
Pages: 1
Hello ,
when i was upgraded my xen from 4.3 to 4.5 i am getting failed status on modules-load at startup
#systemctl status systemd-modules-load.service
● systemd-modules-load.service - Load Kernel Modules
Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static; vendor preset: disabled)
Active: failed (Result: exit-code) since Sat 2015-05-09 06:25:05 CEST; 10min ago
Docs: man:systemd-modules-load.service(8)
man:modules-load.d(5)
Process: 280 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
Main PID: 280 (code=exited, status=1/FAILURE)
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'gntdev'
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'netbk'
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'blkbk'
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'xen-scsibk'
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'usbbk'
May 09 06:25:05 bazin-pc systemd-modules-load[280]: Failed to find module 'pciback'
May 09 06:25:05 bazin-pc systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE
May 09 06:25:05 bazin-pc systemd[1]: Failed to start Load Kernel Modules.
May 09 06:25:05 bazin-pc systemd[1]: Unit systemd-modules-load.service entered failed state.
May 09 06:25:05 bazin-pc systemd[1]: systemd-modules-load.service failed.
I tried to remove whole Xen and install it again , but does not help and i dont know what i am doing wrong .
Btw Xen look like work cause i am able to run VM w/o errors .
Thanks much for help .
some logs :
#uname -a
Linux bazin-pc 4.0.1-1-ARCH #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015 x86_64 GNU/Linux#xl list
Name ID Mem VCPUs State Time(s)
Domain-0 0 16007 8 r----- 1283.6# xl info
host : bazin-pc
release : 4.0.1-1-ARCH
version : #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015
machine : x86_64
nr_cpus : 8
max_cpu_id : 7
nr_nodes : 1
cores_per_socket : 4
threads_per_core : 2
cpu_mhz : 3392
hw_caps : bfebfbff:28100800:00000000:00007f00:77bae3ff:00000000:00000001:00000281
virt_caps : hvm hvm_directio
total_memory : 16354
free_memory : 127
sharing_freed_memory : 0
sharing_used_memory : 0
outstanding_claims : 0
free_cpus : 0
xen_major : 4
xen_minor : 5
xen_extra : .0
xen_version : 4.5.0
xen_caps : xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64
xen_scheduler : credit
xen_pagesize : 4096
platform_params : virt_start=0xffff800000000000
xen_changeset :
xen_commandline : /xen-4.5.0.gz xsave=1
cc_compiler : gcc (GCC) 4.9.2 20150304 (prerelease)
cc_compile_by : bazin
cc_compile_domain : localdomain
cc_compile_date : Sat May 9 06:15:25 CEST 2015
xend_config_format : 4Offline
Hey !
Got the same problem here, did you solve it ?
Thanks
Offline
I think Xen modules got renamed. Taking the "gntdev" module as an example, please try running the following commands:
find /lib/modules -name '*gntdev*'and
grep '^BACKEND_MODULES=' /etc/init.d/xencommonsI'm running Xen 4.5.0-3 on kernel 3.18.6-1 (yes, I know it's an old one, due to an unrelated problem I've been having) and I get these results:
[ashley@hoom ~]$ find /lib/modules -name '*gntdev*'
/lib/modules/3.18.6-1-ARCH/kernel/drivers/xen/xen-gntdev.ko.gz
[ashley@hoom ~]$ grep '^BACKEND_MODULES=' /etc/init.d/xencommons
BACKEND_MODULES="xen-evtchn xen-gntdev xen-gntalloc xen-blkback xen-netback xen-pciback evtchn gntdev netbk blkbk xen-scsibk usbbk pciback xen-acpi-processor blktap2 blktap"If I remember correctly, you have to edit /etc/init.d/xencommons so it names the modules correctly.
Offline
Pages: 1