* [Qemu-devel] KQEMU error, unable to get major 254
@ 2005-02-11 1:19 Darryl Dixon
2005-02-11 1:41 ` [Qemu-devel] [PATCH] " Darryl Dixon
2005-02-11 1:47 ` [Qemu-devel] " Hetz Ben Hamo
0 siblings, 2 replies; 5+ messages in thread
From: Darryl Dixon @ 2005-02-11 1:19 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 860 bytes --]
Hi Fabrice,
I have managed to download the latest cvs and tried it out on Fedora
Core 3 (kernel 2.6.10). It seems that for some reason the kqemu module
is unable to be assigned major device number 254. Below are the errors:
[root@localhost ~]# modprobe kqemu
FATAL: Error inserting kqemu
(/lib/modules/2.6.10-1.760_FC3/misc/kqemu.ko): Device or resource busy
[root@localhost ~]# tail /var/log/messages
Feb 11 14:14:07 localhost kernel: QEMU Accelerator Module version 1.0.0,
Copyright (c) 2005 Fabrice Bellard
Feb 11 14:14:07 localhost kernel: This is a proprietary product. Read
the LICENSE file for more information
Feb 11 14:14:07 localhost kernel: Redistribution of this module is
prohibited without authorization
Feb 11 14:14:07 localhost kernel: kqemu: could not get major 254
Regards,
--
Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
[-- Attachment #2: Type: text/html, Size: 1390 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH] Re: KQEMU error, unable to get major 254
2005-02-11 1:19 [Qemu-devel] KQEMU error, unable to get major 254 Darryl Dixon
@ 2005-02-11 1:41 ` Darryl Dixon
2005-02-11 1:47 ` [Qemu-devel] " Hetz Ben Hamo
1 sibling, 0 replies; 5+ messages in thread
From: Darryl Dixon @ 2005-02-11 1:41 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1860 bytes --]
I have worked around this temporarily with the following patch:
diff -ru qemu/kqemu/install.sh qemu_major250/kqemu/install.sh
--- qemu/kqemu/install.sh 2005-02-11 11:10:28.000000000 +1300
+++ qemu_major250/kqemu/install.sh 2005-02-11 14:24:04.000000000
+1300
@@ -20,5 +20,5 @@
# Create the kqemu device. No special priviledge is needed to use
kqemu.
device="/dev/kqemu"
rm -f $device
-mknod $device c 254 0
+mknod $device c 250 0
chmod 666 $device
Only in qemu_major250/kqemu: .kmod.o.cmd
diff -ru qemu/kqemu/kqemu.h qemu_major250/kqemu/kqemu.h
--- qemu/kqemu/kqemu.h 2005-02-11 11:10:28.000000000 +1300
+++ qemu_major250/kqemu/kqemu.h 2005-02-11 14:23:46.000000000 +1300
@@ -1,7 +1,7 @@
#ifndef KQEMU_H
#define KQEMU_H
-#define KQEMU_MAJOR 254
+#define KQEMU_MAJOR 250
#define KQEMU_VERSION 0x010000
Cheers,
D
On Fri, 2005-02-11 at 14:19 +1300, Darryl Dixon wrote:
> Hi Fabrice,
>
> I have managed to download the latest cvs and tried it out on
> Fedora Core 3 (kernel 2.6.10). It seems that for some reason the
> kqemu module is unable to be assigned major device number 254. Below
> are the errors:
> [root@localhost ~]# modprobe kqemu
> FATAL: Error inserting kqemu
> (/lib/modules/2.6.10-1.760_FC3/misc/kqemu.ko): Device or resource busy
> [root@localhost ~]# tail /var/log/messages
> Feb 11 14:14:07 localhost kernel: QEMU Accelerator Module version
> 1.0.0, Copyright (c) 2005 Fabrice Bellard
> Feb 11 14:14:07 localhost kernel: This is a proprietary product. Read
> the LICENSE file for more information
> Feb 11 14:14:07 localhost kernel: Redistribution of this module is
> prohibited without authorization
> Feb 11 14:14:07 localhost kernel: kqemu: could not get major 254
>
>
> Regards,
> --
> Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
--
Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
[-- Attachment #2: Type: text/html, Size: 3268 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] KQEMU error, unable to get major 254
2005-02-11 1:19 [Qemu-devel] KQEMU error, unable to get major 254 Darryl Dixon
2005-02-11 1:41 ` [Qemu-devel] [PATCH] " Darryl Dixon
@ 2005-02-11 1:47 ` Hetz Ben Hamo
1 sibling, 0 replies; 5+ messages in thread
From: Hetz Ben Hamo @ 2005-02-11 1:47 UTC (permalink / raw)
To: esrever_otua, qemu-devel
Earlier in IRC someone mentioned that changing the code to work with
major 253 solved this issue...
Can someone tell where do you "officially" can request a major number
these days? (if it's possible)..
Thanks,
Hetz
On Fri, 11 Feb 2005 14:19:59 +1300, Darryl Dixon
<esrever_otua@pythonhacker.is-a-geek.net> wrote:
> Hi Fabrice,
>
> I have managed to download the latest cvs and tried it out on Fedora
> Core 3 (kernel 2.6.10). It seems that for some reason the kqemu module is
> unable to be assigned major device number 254. Below are the errors:
> [root@localhost ~]# modprobe kqemu
> FATAL: Error inserting kqemu (/lib/modules/2.6.10-1.760_FC3/misc/kqemu.ko):
> Device or resource busy
> [root@localhost ~]# tail /var/log/messages
> Feb 11 14:14:07 localhost kernel: QEMU Accelerator Module version 1.0.0,
> Copyright (c) 2005 Fabrice Bellard
> Feb 11 14:14:07 localhost kernel: This is a proprietary product. Read the
> LICENSE file for more information
> Feb 11 14:14:07 localhost kernel: Redistribution of this module is
> prohibited without authorization
> Feb 11 14:14:07 localhost kernel: kqemu: could not get major 254
>
>
> Regards,
>
> --
> Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH] Re: KQEMU error, unable to get major 254
@ 2005-02-12 0:23 Jean-Christian de Rivaz
2005-02-12 1:14 ` Paul Brook
0 siblings, 1 reply; 5+ messages in thread
From: Jean-Christian de Rivaz @ 2005-02-12 0:23 UTC (permalink / raw)
To: qemu-devel
> Can someone tell where do you "officially" can request a major number
> these days? (if it's possible)..
See Documentation/devices.txt in the kernel project.
Major number from 232 to 239 seem to be unassigned yet. You can maybe
pick one of them and send a patch to Linux to update the document.
Have a good day,
--
Jean-Christian de Rivaz
mailto:jc@eclis.ch
tel:+41-78-657-7442
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] Re: KQEMU error, unable to get major 254
2005-02-12 0:23 [Qemu-devel] [PATCH] " Jean-Christian de Rivaz
@ 2005-02-12 1:14 ` Paul Brook
0 siblings, 0 replies; 5+ messages in thread
From: Paul Brook @ 2005-02-12 1:14 UTC (permalink / raw)
To: qemu-devel
On Saturday 12 February 2005 00:23, Jean-Christian de Rivaz wrote:
> > Can someone tell where do you "officially" can request a major number
> > these days? (if it's possible)..
>
> See Documentation/devices.txt in the kernel project.
> Major number from 232 to 239 seem to be unassigned yet. You can maybe
> pick one of them and send a patch to Linux to update the document.
Why does qemu need a major number anyway? Wouldn't it be better to use a minor
number from the "misc" class (major 10).
Specifically major 10, minor 240-254 are "reserved for local use", so it
should be safe to use those until such time as qemu gets an official device
id.
Paul
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-02-12 1:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-11 1:19 [Qemu-devel] KQEMU error, unable to get major 254 Darryl Dixon
2005-02-11 1:41 ` [Qemu-devel] [PATCH] " Darryl Dixon
2005-02-11 1:47 ` [Qemu-devel] " Hetz Ben Hamo
-- strict thread matches above, loose matches on Subject: below --
2005-02-12 0:23 [Qemu-devel] [PATCH] " Jean-Christian de Rivaz
2005-02-12 1:14 ` Paul Brook
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).