Bug 125890

Summary: probe of vesafb0 failed
Product: [Fedora] Fedora Reporter: Adam Bowns <adam>
Component: kernelAssignee: Dave Jones <davej>
Status: CLOSED ERRATA QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 3CC: andy, djuran, enpontus, gregory.douglas, pfrields, robatino, web
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-01-05 19:30:43 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
bus.c diff ignoring not only -ENODEV but also -ENXIO in probe callbacks none

Description Adam Bowns 2004-06-13 11:15:24 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040510

Description of problem:
Since updating to kernel-2.6.6-1.427 I have noticed the following
error in my kernel startup logs.

vesafb: probe of vesafb0 failed with error -6

I have not noticed any ill effects from this yet, if I do I will
provide you with more information.

Version-Release number of selected component (if applicable):
kernel-2.6.6-1.427

How reproducible:
Always

Steps to Reproduce:
1. Boot
2. Check kernel startup log
    

Actual Results:  vesafb: probe of vesafb0 failed with error -6

Expected Results:  no error message

Additional info:

Comment 1 Andre Robatino 2004-06-14 18:40:40 UTC
  I have the same exact message since June 11 boot (probably the day
after updating to 427).  In addition I'm now running the 435 kernel
and the message persists.

Comment 2 Craig Routledge 2004-07-08 02:21:40 UTC
The message comes from drivers/base/bus.c and the only patch that
seems to touch that file between 2.6.5-1.358 and 2.6.6-1.427 is from
an update to the mainline kernel:

 akpm at osdl dot org
 [PATCH] fbdev: Vesa Fbdev update

Of course, the cause could run much deeper, but -- not being a kernel
hacker -- I quickly got lost in a maze of twisty little kernel module
functions.


Comment 3 Andre Robatino 2004-08-03 23:46:52 UTC
  Same error message with kernel-2.6.7-1.494.2.2.

Comment 4 Adam Bowns 2004-08-20 13:35:19 UTC
Its still present in kernel-2.6.8-1.521

Comment 5 Alessandro Suardi 2004-08-25 16:57:34 UTC
Created attachment 103082 [details]
bus.c diff ignoring not only -ENODEV but also -ENXIO in probe callbacks

It has to be confirmed that -ENXIO is as ignorable as -ENODEV...

Comment 6 Alessandro Suardi 2004-08-25 16:58:44 UTC
Disclaimer: I don't have enough knowledge to this, so take my patch
with a grain of salt.
Explanation: the bus.c file invokes a probe callback for most devices
in a list, then checks for -ENODEV return ("no such device"), if so it
remains silent. However, some drivers (including vesafb.c) may return
-ENXIO ("no such device or address"), which is indeed error -6.
I shut up the warning with the attached patch, that basically ignores
both -ENODEV and -ENXIO.

Comment 7 Greg Douglas 2004-11-12 21:25:29 UTC
Looks like the problem is still in kernel 2.6.9.  I am still getting
this message:

vesafb: probe of vesafb0 failed with error -6...:  3 Time(s)

in my boot log.


Comment 8 Adam Bowns 2004-11-23 23:14:32 UTC
This problem is still here in FC3 using kernel-2.6.9-1.681_FC3

Should I change the version field of the bug to reflect this?

Comment 9 Andy 2004-12-20 17:58:02 UTC
It seems to me that the posted patch needs to be applied to the linux
kernel source code, which implies that one has to recompile the
kernel.  If so, how come that future versions of the core are not
patched?  I'm currently on 2.6.9-1.681_FC3 and the error persists

Comment 13 Craig Routledge 2005-01-05 19:29:33 UTC
Fix noted in the changelog for FC3 update kernel-2.6.9-1.724_FC3.
Fix confirmed working for me.