Summary: | media:/ confuses filedescriptor devices with floppy devices on FreeBSD | ||
---|---|---|---|
Product: | [Unmaintained] kio | Reporter: | Michael Nottebrock <lofi> |
Component: | media | Assignee: | Kevin Ottens <ervin> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | FreeBSD Ports | ||
OS: | FreeBSD | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Bogus filedescriptor drive. ;-) |
Description
Michael Nottebrock
2006-06-07 16:31:43 UTC
Created attachment 16505 [details]
Bogus filedescriptor drive. ;-)
Do you mean that I should ignore the entry if the fs type is "fdescfs" ? That might work - there's still the entries from devfs left, but for some reason media does not seem to pick up those. If you could whip up a patch, I can test. SVN commit 551883 by ervin: Filesystem typ "fdescfs" is now blacklisted. That should be enough to fix this one. Please reopen if it's still broken. BUG: 128754 M +1 -0 fstabbackend.cpp --- branches/KDE/3.5/kdebase/kioslave/media/mediamanager/fstabbackend.cpp #551882:551883 @@ -111,6 +111,7 @@ if ( mount->mountType() == "swap" || mount->mountType() == "tmpfs" || mount->mountType() == "sysfs" + || mount->mountType() == "fdescfs" || mount->mountType() == "kernfs" || mount->mountType() == "usbfs" || mount->mountType().contains( "proc" ) |