Fun (ie nasty) timing related failure

Sean Meiners sean.meiners at linspire.com
Wed Mar 1 00:53:58 PST 2006


I've recently come across a rather sneaky and difficult to reproduce  
bug in
hald. Under the right conditions it is possible for
'g_assert (d_it != NULL)'
in hald/linux2/blockdev.c:hotplug_event_begin_add_blockdev() to fail,  
causing
hald to quit on startup. It seems that this only happens under the  
following
conditions:

1) blockdev.c:hotplug_event_begin_add_blockdev must be processing a scsi
device. This is because the loop containing the assertion continues  
to walk
up the device chain for scsi devices.

2) hald/linux2/osspec.c:computer_callouts_add_done() can not have  
been called
yet. This means that the /org/freedesktop/Hal/devices/computer device  
has not
yet been moved from the temporary device list to the global device list.

The result being that the loop labeled 'STORAGE' in
blockdev.c:hotplug_event_begin_add_blockdev will walk the entire device
chain, right up the the computer device. Then, when the line
'd_it = hal_device_store_find (hald_get_gdl (), udi_it);'
is run, just before the previously mentioned assertion, it won't find  
the
computer device since it is still sitting in the tdl. This only seems to
happen when either the 'hald-probe-smbios' helper or one of the computer
device's callouts (run from blockdev.c:computer_probing_helper_done 
()) takes
longer than expected since they run asynchronously to the coldplug event
processing during startup.

I've looked through the code in CVS, but it appears that this issue  
has not
been seen before. I wish I could give you a quick & easy way to  
reproduce
this, but so far I've only been able to do so myself on 2 specific  
systems
and even then, it's very sporadic.

I've tried making osspec.c:osspec_probe() wait for the callouts to  
finish
before returning, but this causes hald to deadlock since it appears  
to be
doing everything in a single thread. I get similar results from  
making the
STORAGE loop in blockdev.c:hotplug_event_begin_add_blockdev() wait an
arbitrary amount of time for the device to show up in the gdl, I  
suspect for
the same reasons.

I'm attaching the verbose output of the failure which includes some  
extra
debugging I added to help me track down the cause of all this. The line
containing 'blockdev.c:722' shows what it was trying to do just  
before the
assertion failed. If you poke around, you'll see that there is no  
output of
'Add callouts completed' for the /org/freedesktop/Hal/devices/computer
device, which is the one blockdev.c:hotplug_event_begin_add_blockdev was
looking for.

Thanks in advance,
-- 
Sean Meiners
sean.meiners at linspire.com

PS: I think I was subscribed at the wrong (old) address and this is a  
re-send. So, sorry if you're seeing this twice.


-------------- next part --------------
18:48:32.213 [I] hald.c:494: hal 0.5.4
18:48:32.213 [I] hald.c:496: Will daemonize
18:48:32.213 [I] hald.c:506: Becoming a daemon
18:48:32.215 [I] hald_dbus.c:3043: local server is listening at unix:abstract=/tmp/hald-local/dbus-yE1bVHsFb2,guid=800b0544a394beb9792c935398135200
18:48:32.216 [I] osspec.c:351: sysfs mount point is '/sys'
18:48:32.216 [I] osspec.c:356: proc mount point is '/proc'
18:48:32.233 [I] osspec.c:521: Synthesizing sysfs events...
18:48:32.259 [I] coldplug.c:129: dev_root is /dev
18:48:32.290 [I] coldplug.c:230: sysfs_path /sys/class/i2c-adapter/i2c-0 not in udevdb
18:48:32.291 [I] coldplug.c:230: sysfs_path /sys/class/usb_host/usb_host1 not in udevdb
18:48:32.292 [I] coldplug.c:230: sysfs_path /sys/class/usb_host/usb_host5 not in udevdb
18:48:32.293 [I] coldplug.c:230: sysfs_path /sys/class/usb_host/usb_host4 not in udevdb
18:48:32.294 [I] coldplug.c:230: sysfs_path /sys/class/usb_host/usb_host3 not in udevdb
18:48:32.296 [I] coldplug.c:230: sysfs_path /sys/class/usb_host/usb_host2 not in udevdb
18:48:32.297 [I] coldplug.c:230: sysfs_path /sys/class/scsi_host/host1 not in udevdb
18:48:32.297 [I] coldplug.c:230: sysfs_path /sys/class/scsi_host/host0 not in udevdb
18:48:32.297 [I] coldplug.c:230: sysfs_path /sys/class/scsi_device/0:0:0:0 not in udevdb
18:48:32.299 [I] coldplug.c:230: sysfs_path /sys/class/ieee1394_host/fw-host0 not in udevdb
18:48:32.299 [I] coldplug.c:230: sysfs_path /sys/class/ieee1394_node/0010dc00008a3de5 not in udevdb
18:48:32.299 [I] coldplug.c:230: sysfs_path /sys/class/ieee1394/0010dc00008a3de5-0 not in udevdb
18:48:32.300 [I] coldplug.c:230: sysfs_path /sys/class/net/eth0 not in udevdb
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/ppp/ppp not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ppp
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/kmsg not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/kmsg
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/urandom not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/urandom
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/random not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/random
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/full not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/full
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/zero not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/zero
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/port not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/port
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/null not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/null
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/kmem not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/kmem
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/mem/mem not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/mem
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/net/sit0 not in udevdb
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/net/lo not in udevdb
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/misc/hpet not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/hpet
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyef not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ttyef
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyee not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ttyee
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyed not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ttyed
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyec not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ttyec
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyeb not in udevdb
18:48:32.305 [I] coldplug.c:245: return sysfs_path /dev/ttyeb
18:48:32.305 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyea not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyea
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye9 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye9
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye8 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye8
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye7 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye7
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye6 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye6
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye5 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye5
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye4 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye4
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye3 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye3
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye2 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye2
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye1 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye1
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttye0 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttye0
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttydf not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttydf
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyde not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyde
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttydd not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttydd
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttydc not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttydc
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttydb not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttydb
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyda not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyda
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd9 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd9
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd8 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd8
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd7 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd7
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd6 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd6
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd5 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd5
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd4 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd4
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd3 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd3
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd2 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd2
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd1 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd1
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyd0 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyd0
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttycf not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttycf
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyce not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyce
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttycd not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttycd
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttycc not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttycc
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttycb not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttycb
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyca not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyca
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc9 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyc9
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc8 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyc8
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc7 not in udevdb
18:48:32.306 [I] coldplug.c:245: return sysfs_path /dev/ttyc7
18:48:32.306 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc6 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc6
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc5 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc5
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc4 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc4
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc3 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc3
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc2 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc2
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc1 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc1
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyc0 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyc0
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttybf not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttybf
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttybe not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttybe
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttybd not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttybd
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttybc not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttybc
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttybb not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttybb
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyba not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyba
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb9 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb9
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb8 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb8
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb7 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb7
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb6 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb6
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb5 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb5
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb4 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb4
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb3 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb3
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb2 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb2
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb1 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb1
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyb0 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyb0
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyaf not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyaf
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyae not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyae
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyad not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyad
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyac not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyac
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyab not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyab
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyaa not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttyaa
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya9 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya9
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya8 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya8
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya7 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya7
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya6 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya6
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya5 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya5
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya4 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya4
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya3 not in udevdb
18:48:32.307 [I] coldplug.c:245: return sysfs_path /dev/ttya3
18:48:32.307 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya2 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttya2
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya1 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttya1
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttya0 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttya0
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyzf not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyzf
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyze not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyze
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyzd not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyzd
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyzc not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyzc
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyzb not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyzb
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyza not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyza
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz9 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz9
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz8 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz8
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz7 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz7
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz6 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz6
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz5 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz5
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz4 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz4
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz3 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz3
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz2 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz2
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz1 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz1
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyz0 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyz0
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyyf not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyyf
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyye not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyye
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyyd not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyyd
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyyc not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyyc
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyyb not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyyb
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyya not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyya
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy9 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy9
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy8 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy8
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy7 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy7
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy6 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy6
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy5 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy5
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy4 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy4
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy3 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy3
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy2 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy2
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy1 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy1
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyy0 not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyy0
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxf not in udevdb
18:48:32.308 [I] coldplug.c:245: return sysfs_path /dev/ttyxf
18:48:32.308 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxe not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyxe
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxd not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyxd
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxc not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyxc
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxb not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyxb
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyxa not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyxa
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx9 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx9
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx8 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx8
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx7 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx7
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx6 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx6
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx5 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx5
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx4 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx4
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx3 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx3
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx2 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx2
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx1 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx1
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyx0 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyx0
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywf not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywf
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywe not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywe
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywd not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywd
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywc not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywc
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywb not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywb
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttywa not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttywa
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw9 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw9
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw8 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw8
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw7 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw7
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw6 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw6
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw5 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw5
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw4 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw4
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw3 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw3
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw2 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw2
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw1 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw1
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyw0 not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyw0
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyvf not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyvf
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyve not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyve
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyvd not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyvd
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyvc not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyvc
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyvb not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyvb
18:48:32.309 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyva not in udevdb
18:48:32.309 [I] coldplug.c:245: return sysfs_path /dev/ttyva
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv9 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv9
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv8 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv8
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv7 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv7
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv6 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv6
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv5 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv5
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv4 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv4
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv3 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv3
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv2 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv2
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv1 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv1
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyv0 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyv0
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyuf not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyuf
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyue not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyue
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyud not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyud
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyuc not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyuc
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyub not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyub
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyua not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyua
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu9 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu9
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu8 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu8
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu7 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu7
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu6 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu6
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu5 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu5
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu4 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu4
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu3 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu3
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu2 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu2
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu1 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu1
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyu0 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyu0
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttytf not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttytf
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyte not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyte
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttytd not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttytd
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttytc not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttytc
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttytb not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttytb
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyta not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyta
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt9 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyt9
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt8 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyt8
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt7 not in udevdb
18:48:32.310 [I] coldplug.c:245: return sysfs_path /dev/ttyt7
18:48:32.310 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt6 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt6
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt5 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt5
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt4 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt4
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt3 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt3
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt2 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt2
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt1 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt1
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyt0 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyt0
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttysf not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttysf
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyse not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyse
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttysd not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttysd
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttysc not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttysc
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttysb not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttysb
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttysa not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttysa
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys9 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys9
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys8 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys8
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys7 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys7
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys6 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys6
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys5 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys5
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys4 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys4
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys3 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys3
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys2 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys2
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys1 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys1
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttys0 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttys0
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyrf not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyrf
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyre not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyre
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyrd not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyrd
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyrc not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyrc
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyrb not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyrb
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyra not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyra
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr9 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr9
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr8 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr8
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr7 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr7
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr6 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr6
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr5 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr5
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr4 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr4
18:48:32.311 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr3 not in udevdb
18:48:32.311 [I] coldplug.c:245: return sysfs_path /dev/ttyr3
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr2 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyr2
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr1 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyr1
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyr0 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyr0
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqf not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqf
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqe not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqe
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqd not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqd
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqc not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqc
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqb not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqb
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyqa not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyqa
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq9 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq9
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq8 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq8
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq7 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq7
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq6 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq6
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq5 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq5
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq4 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq4
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq3 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq3
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq2 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq2
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq1 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq1
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyq0 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyq0
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttypf not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttypf
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttype not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttype
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttypd not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttypd
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttypc not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttypc
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttypb not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttypb
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttypa not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttypa
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp9 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp9
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp8 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp8
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp7 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp7
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp6 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp6
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp5 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp5
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp4 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp4
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp3 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp3
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp2 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp2
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp1 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp1
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ttyp0 not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ttyp0
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyef not in udevdb
18:48:32.312 [I] coldplug.c:245: return sysfs_path /dev/ptyef
18:48:32.312 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyee not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyee
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyed not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyed
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyec not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyec
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyeb not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyeb
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyea not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyea
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye9 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye9
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye8 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye8
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye7 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye7
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye6 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye6
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye5 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye5
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye4 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye4
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye3 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye3
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye2 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye2
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye1 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye1
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptye0 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptye0
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptydf not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptydf
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyde not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyde
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptydd not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptydd
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptydc not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptydc
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptydb not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptydb
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyda not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyda
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd9 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd9
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd8 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd8
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd7 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd7
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd6 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd6
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd5 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd5
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd4 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd4
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd3 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd3
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd2 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd2
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd1 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd1
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyd0 not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyd0
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptycf not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptycf
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyce not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyce
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptycd not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptycd
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptycc not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptycc
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptycb not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptycb
18:48:32.313 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyca not in udevdb
18:48:32.313 [I] coldplug.c:245: return sysfs_path /dev/ptyca
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc9 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc9
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc8 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc8
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc7 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc7
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc6 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc6
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc5 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc5
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc4 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc4
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc3 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc3
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc2 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc2
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc1 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc1
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyc0 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyc0
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptybf not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptybf
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptybe not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptybe
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptybd not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptybd
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptybc not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptybc
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptybb not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptybb
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyba not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyba
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb9 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb9
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb8 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb8
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb7 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb7
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb6 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb6
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb5 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb5
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb4 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb4
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb3 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb3
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb2 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb2
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb1 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb1
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyb0 not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyb0
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyaf not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyaf
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyae not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyae
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyad not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyad
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyac not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyac
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyab not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyab
18:48:32.314 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyaa not in udevdb
18:48:32.314 [I] coldplug.c:245: return sysfs_path /dev/ptyaa
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya9 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya9
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya8 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya8
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya7 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya7
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya6 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya6
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya5 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya5
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya4 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya4
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya3 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya3
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya2 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya2
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya1 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya1
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptya0 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptya0
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyzf not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyzf
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyze not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyze
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyzd not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyzd
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyzc not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyzc
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyzb not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyzb
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyza not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyza
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz9 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz9
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz8 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz8
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz7 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz7
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz6 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz6
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz5 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz5
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz4 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz4
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz3 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz3
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz2 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz2
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz1 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz1
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyz0 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyz0
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyyf not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyyf
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyye not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyye
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyyd not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyyd
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyyc not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyyc
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyyb not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyyb
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyya not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyya
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy9 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyy9
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy8 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyy8
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy7 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyy7
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy6 not in udevdb
18:48:32.315 [I] coldplug.c:245: return sysfs_path /dev/ptyy6
18:48:32.315 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy5 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy5
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy4 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy4
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy3 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy3
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy2 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy2
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy1 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy1
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyy0 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyy0
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxf not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxf
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxe not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxe
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxd not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxd
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxc not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxc
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxb not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxb
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyxa not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyxa
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx9 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx9
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx8 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx8
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx7 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx7
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx6 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx6
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx5 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx5
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx4 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx4
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx3 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx3
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx2 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx2
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx1 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx1
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyx0 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyx0
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywf not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywf
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywe not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywe
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywd not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywd
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywc not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywc
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywb not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywb
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptywa not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptywa
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw9 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw9
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw8 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw8
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw7 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw7
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw6 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw6
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw5 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw5
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw4 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw4
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw3 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw3
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw2 not in udevdb
18:48:32.316 [I] coldplug.c:245: return sysfs_path /dev/ptyw2
18:48:32.316 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw1 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyw1
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyw0 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyw0
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyvf not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyvf
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyve not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyve
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyvd not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyvd
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyvc not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyvc
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyvb not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyvb
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyva not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyva
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv9 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv9
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv8 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv8
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv7 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv7
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv6 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv6
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv5 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv5
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv4 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv4
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv3 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv3
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv2 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv2
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv1 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv1
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyv0 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyv0
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyuf not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyuf
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyue not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyue
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyud not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyud
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyuc not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyuc
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyub not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyub
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyua not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyua
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu9 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu9
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu8 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu8
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu7 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu7
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu6 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu6
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu5 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu5
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu4 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu4
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu3 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu3
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu2 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu2
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu1 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu1
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyu0 not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyu0
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptytf not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptytf
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyte not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptyte
18:48:32.317 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptytd not in udevdb
18:48:32.317 [I] coldplug.c:245: return sysfs_path /dev/ptytd
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptytc not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptytc
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptytb not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptytb
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyta not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyta
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt9 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt9
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt8 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt8
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt7 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt7
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt6 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt6
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt5 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt5
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt4 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt4
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt3 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt3
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt2 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt2
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt1 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt1
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyt0 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyt0
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptysf not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptysf
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyse not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyse
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptysd not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptysd
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptysc not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptysc
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptysb not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptysb
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptysa not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptysa
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys9 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys9
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys8 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys8
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys7 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys7
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys6 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys6
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys5 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys5
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys4 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys4
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys3 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys3
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys2 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys2
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys1 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys1
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptys0 not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptys0
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyrf not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyrf
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyre not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyre
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyrd not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyrd
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyrc not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyrc
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyrb not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyrb
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyra not in udevdb
18:48:32.318 [I] coldplug.c:245: return sysfs_path /dev/ptyra
18:48:32.318 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr9 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr9
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr8 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr8
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr7 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr7
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr6 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr6
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr5 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr5
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr4 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr4
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr3 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr3
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr2 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr2
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr1 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr1
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyr0 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyr0
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqf not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqf
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqe not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqe
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqd not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqd
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqc not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqc
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqb not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqb
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyqa not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyqa
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq9 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq9
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq8 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq8
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq7 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq7
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq6 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq6
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq5 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq5
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq4 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq4
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq3 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq3
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq2 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq2
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq1 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq1
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyq0 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyq0
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptypf not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptypf
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptype not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptype
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptypd not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptypd
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptypc not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptypc
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptypb not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptypb
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptypa not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptypa
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp9 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyp9
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp8 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyp8
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp7 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyp7
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp6 not in udevdb
18:48:32.319 [I] coldplug.c:245: return sysfs_path /dev/ptyp6
18:48:32.319 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp5 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp5
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp4 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp4
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp3 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp3
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp2 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp2
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp1 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp1
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptyp0 not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptyp0
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/ptmx not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/ptmx
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/console not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/console
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/tty/tty not in udevdb
18:48:32.320 [I] coldplug.c:245: return sysfs_path /dev/tty
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/pci_bus/0000:01 not in udevdb
18:48:32.320 [I] coldplug.c:230: sysfs_path /sys/class/pci_bus/0000:00 not in udevdb
18:48:32.321 [I] osspec.c:524: Synthesizing powermgmt events...
18:48:32.321 [I] acpi.c:622: Processing /proc/acpi/processor/CPU0
18:48:32.321 [I] acpi.c:622: Processing /proc/acpi/fan/FAN
18:48:32.321 [E] acpi.c:612: Couldn't open /proc/acpi/button/lid: Error opening directory '/proc/acpi/button/lid': No such file or directory
18:48:32.321 [I] acpi.c:622: Processing /proc/acpi/button/power/PWRB
18:48:32.321 [I] acpi.c:622: Processing /proc/acpi/button/power/PWRF
18:48:32.321 [I] acpi.c:622: Processing /proc/acpi/button/sleep/SLPB
18:48:32.321 [I] osspec.c:526: ACPI capabilities found
18:48:32.321 [I] osspec.c:536: Done synthesizing events
18:48:32.343 [I] osspec.c:154: SEQNUM=1037, TIMESTAMP=1141181312, ACTION=add, SUBSYS=printer, SYSFSPATH=/class/printer/lp0, DEVNAME=/dev/printers/0, IFINDEX=-1
18:48:32.343 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:0b, parent=0x00000000, parent->udi=(null)
/dev/mem: Permission denied
18:48:32.460 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0303
18:48:32.460 [I] hald.c:89: Added device to GDL; device=0x0808e440, udi=/org/freedesktop/Hal/devices/pnp_PNP0303
18:48:32.460 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:0a, parent=0x00000000, parent->udi=(null)
18:48:32.462 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0f13
18:48:32.462 [I] hald.c:89: Added device to GDL; device=0x0808b350, udi=/org/freedesktop/Hal/devices/pnp_PNP0f13
18:48:32.462 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:09, parent=0x00000000, parent->udi=(null)
18:48:32.465 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0401
18:48:32.465 [I] hald.c:89: Added device to GDL; device=0x08089f20, udi=/org/freedesktop/Hal/devices/pnp_PNP0401
18:48:32.465 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:08, parent=0x00000000, parent->udi=(null)
18:48:32.467 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0501
18:48:32.467 [I] hald.c:89: Added device to GDL; device=0x080a5e40, udi=/org/freedesktop/Hal/devices/pnp_PNP0501
18:48:32.467 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyS0 dev=/dev/tts/0 physdev=0x080a5e40 udi=/org/freedesktop/Hal/devices/pnp_PNP0501
18:48:32.470 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0501_serial_platform_0
18:48:32.470 [I] hald.c:89: Added device to GDL; device=0x080a3ec0, udi=/org/freedesktop/Hal/devices/pnp_PNP0501_serial_platform_0
18:48:32.470 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:07, parent=0x00000000, parent->udi=(null)
18:48:32.473 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0700
18:48:32.473 [I] hald.c:89: Added device to GDL; device=0x0808e098, udi=/org/freedesktop/Hal/devices/pnp_PNP0700
18:48:32.473 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:06, parent=0x00000000, parent->udi=(null)
18:48:32.475 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0c04
18:48:32.475 [I] hald.c:89: Added device to GDL; device=0x080c1420, udi=/org/freedesktop/Hal/devices/pnp_PNP0c04
18:48:32.475 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:05, parent=0x00000000, parent->udi=(null)
18:48:32.478 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0800
18:48:32.478 [I] hald.c:89: Added device to GDL; device=0x080bdf80, udi=/org/freedesktop/Hal/devices/pnp_PNP0800
18:48:32.478 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:04, parent=0x00000000, parent->udi=(null)
18:48:32.481 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0b00
18:48:32.481 [I] hald.c:89: Added device to GDL; device=0x080baee0, udi=/org/freedesktop/Hal/devices/pnp_PNP0b00
18:48:32.481 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:03, parent=0x00000000, parent->udi=(null)
18:48:32.483 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0200
18:48:32.483 [I] hald.c:89: Added device to GDL; device=0x080b7e30, udi=/org/freedesktop/Hal/devices/pnp_PNP0200
18:48:32.483 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:02, parent=0x00000000, parent->udi=(null)
18:48:32.486 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0c02
18:48:32.486 [I] hald.c:89: Added device to GDL; device=0x0808c1e8, udi=/org/freedesktop/Hal/devices/pnp_PNP0c02
18:48:32.486 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:01, parent=0x00000000, parent->udi=(null)
18:48:32.488 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0c02_0
18:48:32.489 [I] hald.c:89: Added device to GDL; device=0x080b6658, udi=/org/freedesktop/Hal/devices/pnp_PNP0c02_0
18:48:32.489 [I] physdev.c:1404: phys_add: subsys=pnp sysfs_path=/sys/devices/pnp0/00:00, parent=0x00000000, parent->udi=(null)
18:48:32.491 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pnp_PNP0c01
18:48:32.491 [I] hald.c:89: Added device to GDL; device=0x080b5068, udi=/org/freedesktop/Hal/devices/pnp_PNP0c01
18:48:32.491 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:11.5, parent=0x00000000, parent->udi=(null)
18:48:32.495 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.496 [I] hald.c:89: Added device to GDL; device=0x080bf8a0, udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.496 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/mixer dev=/dev/sound/mixer physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.498 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_mixer_0__1
18:48:32.498 [I] hald.c:89: Added device to GDL; device=0x080b9768, udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_mixer_0__1
18:48:32.498 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/controlC0 dev=/dev/snd/controlC0 physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.501 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_control_0__1
18:48:32.501 [I] hald.c:89: Added device to GDL; device=0x080bc958, udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_control_0__1
18:48:32.501 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/audio dev=/dev/sound/audio physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.504 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_0
18:48:32.504 [I] hald.c:89: Added device to GDL; device=0x08089398, udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_0
18:48:32.504 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/dsp dev=/dev/sound/dsp physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.506 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_0_0
18:48:32.507 [I] hald.c:89: Added device to GDL; device=0x080aaf30, udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_0_0
18:48:32.507 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/pcmC0D0c dev=/dev/snd/pcmC0D0c physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.509 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_capture_0_0
18:48:32.509 [I] hald.c:89: Added device to GDL; device=0x080a8c78, udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_capture_0_0
18:48:32.509 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/pcmC0D0p dev=/dev/snd/pcmC0D0p physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.512 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_playback_0_0
18:48:32.512 [I] hald.c:89: Added device to GDL; device=0x080adcd8, udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_playback_0_0
18:48:32.512 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/adsp dev=/dev/sound/adsp physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.515 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_1
18:48:32.515 [I] hald.c:89: Added device to GDL; device=0x0815bff0, udi=/org/freedesktop/Hal/devices/pci_1106_3059_oss_pcm_0_1
18:48:32.515 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/pcmC0D1c dev=/dev/snd/pcmC0D1c physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.517 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_capture_0_1
18:48:32.517 [I] hald.c:89: Added device to GDL; device=0x0815c528, udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_capture_0_1
18:48:32.518 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/pcmC0D1p dev=/dev/snd/pcmC0D1p physdev=0x080bf8a0 udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.520 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_playback_0_1
18:48:32.520 [I] hald.c:89: Added device to GDL; device=0x080aef50, udi=/org/freedesktop/Hal/devices/pci_1106_3059_alsa_playback_0_1
18:48:32.520 [I] physdev.c:1404: phys_add: subsys=ac97 sysfs_path=/sys/devices/pci0000:00/0000:00:11.5/card0-0, parent=0x080bf8a0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3059
18:48:32.520 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:11.0, parent=0x00000000, parent->udi=(null)
18:48:32.525 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3227
18:48:32.525 [I] hald.c:89: Added device to GDL; device=0x080af590, udi=/org/freedesktop/Hal/devices/pci_1106_3227
18:48:32.525 [I] classdev.c:1211: class_add: subsys=i2c-adapter sysfs_path=/sys/class/i2c-adapter/i2c-0 dev= physdev=0x080af590 udi=/org/freedesktop/Hal/devices/pci_1106_3227
18:48:32.525 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:10.4, parent=0x00000000, parent->udi=(null)
18:48:32.529 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3104
18:48:32.529 [I] hald.c:89: Added device to GDL; device=0x080af838, udi=/org/freedesktop/Hal/devices/pci_1106_3104
18:48:32.529 [I] classdev.c:1211: class_add: subsys=usb_host sysfs_path=/sys/class/usb_host/usb_host1 dev= physdev=0x080af838 udi=/org/freedesktop/Hal/devices/pci_1106_3104
18:48:32.529 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.4/usb1, parent=0x080af838, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3104
18:48:32.533 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4
18:48:32.533 [I] hald.c:89: Added device to GDL; device=0x080aff98, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4
18:48:32.533 [I] classdev.c:1211: class_add: subsys=usb_device sysfs_path=/sys/class/usb_device/usbdev1.1 dev=/dev/usbdev1.1 physdev=0x080aff98 udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4
18:48:32.533 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.4/usb1/1-0:1.0, parent=0x080aff98, parent->udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4
18:48:32.536 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4_if0
18:48:32.536 [I] hald.c:89: Added device to GDL; device=0x080b0578, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_4_if0
18:48:32.536 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:10.3, parent=0x00000000, parent->udi=(null)
18:48:32.540 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3038
18:48:32.541 [I] hald.c:89: Added device to GDL; device=0x080b70b0, udi=/org/freedesktop/Hal/devices/pci_1106_3038
18:48:32.541 [I] classdev.c:1211: class_add: subsys=usb_host sysfs_path=/sys/class/usb_host/usb_host5 dev= physdev=0x080b70b0 udi=/org/freedesktop/Hal/devices/pci_1106_3038
18:48:32.541 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.3/usb5, parent=0x080b70b0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3038
18:48:32.544 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3
18:48:32.544 [I] hald.c:89: Added device to GDL; device=0x080b0b18, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3
18:48:32.545 [I] classdev.c:1211: class_add: subsys=usb_device sysfs_path=/sys/class/usb_device/usbdev5.1 dev=/dev/usbdev5.1 physdev=0x080b0b18 udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3
18:48:32.545 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.3/usb5/5-0:1.0, parent=0x080b0b18, parent->udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3
18:48:32.547 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3_if0
18:48:32.547 [I] hald.c:89: Added device to GDL; device=0x080b0cf0, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_3_if0
18:48:32.548 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:10.2, parent=0x00000000, parent->udi=(null)
18:48:32.552 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3038_0
18:48:32.552 [I] hald.c:89: Added device to GDL; device=0x080b8890, udi=/org/freedesktop/Hal/devices/pci_1106_3038_0
18:48:32.552 [I] classdev.c:1211: class_add: subsys=usb_host sysfs_path=/sys/class/usb_host/usb_host4 dev= physdev=0x080b8890 udi=/org/freedesktop/Hal/devices/pci_1106_3038_0
18:48:32.552 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.2/usb4, parent=0x080b8890, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3038_0
18:48:32.556 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2
18:48:32.556 [I] hald.c:89: Added device to GDL; device=0x080b12f0, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2
18:48:32.556 [I] classdev.c:1211: class_add: subsys=usb_device sysfs_path=/sys/class/usb_device/usbdev4.1 dev=/dev/usbdev4.1 physdev=0x080b12f0 udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2
18:48:32.556 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.2/usb4/4-0:1.0, parent=0x080b12f0, parent->udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2
18:48:32.559 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2_if0
18:48:32.559 [I] hald.c:89: Added device to GDL; device=0x080b7300, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_2_if0
18:48:32.559 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:10.1, parent=0x00000000, parent->udi=(null)
18:48:32.563 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3038_1
18:48:32.564 [I] hald.c:89: Added device to GDL; device=0x080ba0d0, udi=/org/freedesktop/Hal/devices/pci_1106_3038_1
18:48:32.564 [I] classdev.c:1211: class_add: subsys=usb_host sysfs_path=/sys/class/usb_host/usb_host3 dev= physdev=0x080ba0d0 udi=/org/freedesktop/Hal/devices/pci_1106_3038_1
18:48:32.564 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.1/usb3, parent=0x080ba0d0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3038_1
18:48:32.567 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1
18:48:32.567 [I] hald.c:89: Added device to GDL; device=0x080bb520, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1
18:48:32.568 [I] classdev.c:1211: class_add: subsys=usb_device sysfs_path=/sys/class/usb_device/usbdev3.1 dev=/dev/usbdev3.1 physdev=0x080bb520 udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1
18:48:32.568 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.1/usb3/3-0:1.0, parent=0x080bb520, parent->udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1
18:48:32.571 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1_if0
18:48:32.571 [I] hald.c:89: Added device to GDL; device=0x080b1c78, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_1_if0
18:48:32.571 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:10.0, parent=0x00000000, parent->udi=(null)
18:48:32.575 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3038_2
18:48:32.575 [I] hald.c:89: Added device to GDL; device=0x080bb910, udi=/org/freedesktop/Hal/devices/pci_1106_3038_2
18:48:32.575 [I] classdev.c:1211: class_add: subsys=usb_host sysfs_path=/sys/class/usb_host/usb_host2 dev= physdev=0x080bb910 udi=/org/freedesktop/Hal/devices/pci_1106_3038_2
18:48:32.575 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.0/usb2, parent=0x080bb910, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3038_2
18:48:32.579 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0
18:48:32.579 [I] hald.c:89: Added device to GDL; device=0x080b2210, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0
18:48:32.579 [I] classdev.c:1211: class_add: subsys=usb_device sysfs_path=/sys/class/usb_device/usbdev2.1 dev=/dev/usbdev2.1 physdev=0x080b2210 udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0
18:48:32.579 [I] physdev.c:1404: phys_add: subsys=usb sysfs_path=/sys/devices/pci0000:00/0000:00:10.0/usb2/2-0:1.0, parent=0x080b2210, parent->udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0
18:48:32.582 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0_if0
18:48:32.582 [I] hald.c:89: Added device to GDL; device=0x080b2408, udi=/org/freedesktop/Hal/devices/usb_device_0_0_0000_00_10_0_if0
18:48:32.583 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:0f.1, parent=0x00000000, parent->udi=(null)
18:48:32.587 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_571
18:48:32.587 [I] hald.c:89: Added device to GDL; device=0x080bd150, udi=/org/freedesktop/Hal/devices/pci_1106_571
18:48:32.587 [I] physdev.c:1404: phys_add: subsys=ide sysfs_path=/sys/devices/pci0000:00/0000:00:0f.1/ide0/0.1, parent=0x080bd150, parent->udi=/org/freedesktop/Hal/devices/pci_1106_571
18:48:32.590 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_571_ide_0_1
18:48:32.590 [I] hald.c:89: Added device to GDL; device=0x080b29a8, udi=/org/freedesktop/Hal/devices/pci_1106_571_ide_0_1
18:48:32.590 [I] physdev.c:1404: phys_add: subsys=ide sysfs_path=/sys/devices/pci0000:00/0000:00:0f.1/ide0/0.0, parent=0x080bd150, parent->udi=/org/freedesktop/Hal/devices/pci_1106_571
18:48:32.593 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_571_ide_0_0
18:48:32.593 [I] hald.c:89: Added device to GDL; device=0x080bbbc0, udi=/org/freedesktop/Hal/devices/pci_1106_571_ide_0_0
18:48:32.593 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:0f.0, parent=0x00000000, parent->udi=(null)
18:48:32.597 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3149
18:48:32.597 [I] hald.c:89: Added device to GDL; device=0x080bbfe0, udi=/org/freedesktop/Hal/devices/pci_1106_3149
18:48:32.598 [I] classdev.c:1211: class_add: subsys=scsi_host sysfs_path=/sys/class/scsi_host/host1 dev= physdev=0x080bbfe0 udi=/org/freedesktop/Hal/devices/pci_1106_3149
18:48:32.600 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host
18:48:32.600 [I] hald.c:89: Added device to GDL; device=0x080bd210, udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host
18:48:32.601 [I] classdev.c:1211: class_add: subsys=scsi_host sysfs_path=/sys/class/scsi_host/host0 dev= physdev=0x080bbfe0 udi=/org/freedesktop/Hal/devices/pci_1106_3149
18:48:32.603 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0
18:48:32.603 [I] hald.c:89: Added device to GDL; device=0x080bd598, udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0
18:48:32.603 [I] physdev.c:1404: phys_add: subsys=scsi sysfs_path=/sys/devices/pci0000:00/0000:00:0f.0/host0/target0:0:0/0:0:0:0, parent=0x080bd598, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0
18:48:32.606 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0
18:48:32.606 [I] hald.c:89: Added device to GDL; device=0x080bd960, udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0
18:48:32.606 [I] classdev.c:1211: class_add: subsys=scsi_device sysfs_path=/sys/class/scsi_device/0:0:0:0 dev= physdev=0x080bd960 udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0
18:48:32.607 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:0b.0, parent=0x00000000, parent->udi=(null)
18:48:32.611 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.611 [I] hald.c:89: Added device to GDL; device=0x080b43e0, udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.611 [I] physdev.c:1404: phys_add: subsys=ieee1394 sysfs_path=/sys/devices/pci0000:00/0000:00:0b.0/fw-host0, parent=0x080b43e0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.611 [I] classdev.c:1211: class_add: subsys=ieee1394_host sysfs_path=/sys/class/ieee1394_host/fw-host0 dev= physdev=0x080b43e0 udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.612 [I] physdev.c:1404: phys_add: subsys=ieee1394 sysfs_path=/sys/devices/pci0000:00/0000:00:0b.0/fw-host0/0010dc00008a3de5, parent=0x080b43e0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.612 [I] classdev.c:1211: class_add: subsys=ieee1394_node sysfs_path=/sys/class/ieee1394_node/0010dc00008a3de5 dev= physdev=0x080b43e0 udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.612 [I] physdev.c:1404: phys_add: subsys=ieee1394 sysfs_path=/sys/devices/pci0000:00/0000:00:0b.0/fw-host0/0010dc00008a3de5/0010dc00008a3de5-0, parent=0x080b43e0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3044
18:48:32.612 [E] util.c:409: Cannot open '/sys/devices/pci0000:00/0000:00:0b.0/fw-host0/0010dc00008a3de5/0010dc00008a3de5-0/../vendor_oui'
18:48:32.612 [E] util.c:268: Cannot open '/sys/devices/pci0000:00/0000:00:0b.0/fw-host0/0010dc00008a3de5/0010dc00008a3de5-0/model_id'
18:48:32.615 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/ieee1394_guid_10dc00008a3de5
18:48:32.615 [I] hald.c:89: Added device to GDL; device=0x080c1d78, udi=/org/freedesktop/Hal/devices/ieee1394_guid_10dc00008a3de5
18:48:32.615 [I] classdev.c:1211: class_add: subsys=ieee1394 sysfs_path=/sys/class/ieee1394/0010dc00008a3de5-0 dev= physdev=0x080c1d78 udi=/org/freedesktop/Hal/devices/ieee1394_guid_10dc00008a3de5
18:48:32.616 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:08.0, parent=0x00000000, parent->udi=(null)
18:48:32.620 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_11c1_48c
18:48:32.620 [I] hald.c:89: Added device to GDL; device=0x080bfc68, udi=/org/freedesktop/Hal/devices/pci_11c1_48c
18:48:32.620 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:07.0, parent=0x00000000, parent->udi=(null)
18:48:32.625 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_10ec_8139
18:48:32.625 [I] hald.c:89: Added device to GDL; device=0x080c37e0, udi=/org/freedesktop/Hal/devices/pci_10ec_8139
18:48:32.625 [I] classdev.c:1211: class_add: subsys=net sysfs_path=/sys/class/net/eth0 dev= physdev=0x080c37e0 udi=/org/freedesktop/Hal/devices/pci_10ec_8139
18:48:32.628 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/net_00_11_09_7f_0e_30
18:48:32.628 [I] hald.c:89: Added device to GDL; device=0x080c3b28, udi=/org/freedesktop/Hal/devices/net_00_11_09_7f_0e_30
18:48:32.628 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:01.0, parent=0x00000000, parent->udi=(null)
18:48:32.632 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_b198
18:48:32.633 [I] hald.c:89: Added device to GDL; device=0x080befe0, udi=/org/freedesktop/Hal/devices/pci_1106_b198
18:48:32.633 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0, parent=0x080befe0, parent->udi=/org/freedesktop/Hal/devices/pci_1106_b198
18:48:32.637 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3344
18:48:32.637 [I] hald.c:89: Added device to GDL; device=0x080b4488, udi=/org/freedesktop/Hal/devices/pci_1106_3344
18:48:32.637 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.7, parent=0x00000000, parent->udi=(null)
18:48:32.642 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_7314
18:48:32.642 [I] hald.c:89: Added device to GDL; device=0x080b4b98, udi=/org/freedesktop/Hal/devices/pci_1106_7314
18:48:32.642 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.4, parent=0x00000000, parent->udi=(null)
18:48:32.647 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_4314
18:48:32.647 [I] hald.c:89: Added device to GDL; device=0x080c2e28, udi=/org/freedesktop/Hal/devices/pci_1106_4314
18:48:32.647 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.3, parent=0x00000000, parent->udi=(null)
18:48:32.652 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_3208
18:48:32.652 [I] hald.c:89: Added device to GDL; device=0x080b34f8, udi=/org/freedesktop/Hal/devices/pci_1106_3208
18:48:32.652 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.2, parent=0x00000000, parent->udi=(null)
18:48:32.656 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_2314
18:48:32.656 [I] hald.c:89: Added device to GDL; device=0x080b37c8, udi=/org/freedesktop/Hal/devices/pci_1106_2314
18:48:32.657 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.1, parent=0x00000000, parent->udi=(null)
18:48:32.661 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_1314
18:48:32.661 [I] hald.c:89: Added device to GDL; device=0x080b3aa8, udi=/org/freedesktop/Hal/devices/pci_1106_1314
18:48:32.662 [I] physdev.c:1404: phys_add: subsys=pci sysfs_path=/sys/devices/pci0000:00/0000:00:00.0, parent=0x00000000, parent->udi=(null)
18:48:32.666 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/pci_1106_314
18:48:32.666 [I] hald.c:89: Added device to GDL; device=0x080c1dd8, udi=/org/freedesktop/Hal/devices/pci_1106_314
18:48:32.667 [I] physdev.c:1404: phys_add: subsys=platform sysfs_path=/sys/devices/platform/serial8250, parent=0x00000000, parent->udi=(null)
18:48:32.667 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyS3 dev=/dev/tts/3 physdev=0x00000000 udi=(null)
18:48:32.668 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyS2 dev=/dev/tts/2 physdev=0x00000000 udi=(null)
18:48:32.669 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyS1 dev=/dev/tts/1 physdev=0x00000000 udi=(null)
18:48:32.669 [I] physdev.c:1404: phys_add: subsys=platform sysfs_path=/sys/devices/platform/floppy.0, parent=0x00000000, parent->udi=(null)
18:48:32.670 [I] physdev.c:1404: phys_add: subsys=platform sysfs_path=/sys/devices/platform/i8042, parent=0x00000000, parent->udi=(null)
18:48:32.670 [I] physdev.c:1404: phys_add: subsys=serio sysfs_path=/sys/devices/platform/i8042/serio1, parent=0x00000000, parent->udi=(null)
18:48:32.673 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_i8042_Kbd_Port
18:48:32.673 [I] hald.c:89: Added device to GDL; device=0x080c20e8, udi=/org/freedesktop/Hal/devices/computer_i8042_Kbd_Port
18:48:32.673 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/event0 dev=/dev/input/event0 physdev=0x080c20e8 udi=/org/freedesktop/Hal/devices/computer_i8042_Kbd_Port
18:48:32.675 [I] osspec.c:243: total_read=181 buf='add@/module/lp'
18:48:32.675 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.675 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.675 [I] util.c:554: child exited for pid 4894
18:48:32.677 [I] device_info.c:1370: *** Matched file /usr/share/hal/fdi/policy/10osvendor/10-power-mgmt-policy.fdi
18:48:32.678 [I] device_info.c:1370: *** Matched file /usr/share/hal/fdi/policy/10osvendor/10-storage-policy.fdi
18:48:32.678 [I] device_info.c:1370: *** Matched file /usr/share/hal/fdi/policy/10osvendor/90-fstab-sync.fdi
18:48:32.678 [I] util.c:1155: Add callouts for udi=/org/freedesktop/Hal/devices/computer
4910: 18:48:32.680: probe-input.c:169: Doing probe-input for /dev/input/event0 (udi=/org/freedesktop/Hal/devices/temp/61)
4910: 18:48:32.680: probe-input.c:173: Cannot open /dev/input/event0: Permission denied
18:48:32.687 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.687 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.687 [I] util.c:554: child exited for pid 4910
18:48:32.687 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.688 [I] physdev.c:1404: phys_add: subsys=serio sysfs_path=/sys/devices/platform/i8042/serio0, parent=0x00000000, parent->udi=(null)
18:48:32.691 [I] physdev.c:1328: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_i8042_Aux_Port
18:48:32.691 [I] hald.c:89: Added device to GDL; device=0x080c2400, udi=/org/freedesktop/Hal/devices/computer_i8042_Aux_Port
18:48:32.691 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/ts0 dev=/dev/input/ts0 physdev=0x080c2400 udi=/org/freedesktop/Hal/devices/computer_i8042_Aux_Port
4913: 18:48:32.693: probe-input.c:169: Doing probe-input for /dev/input/ts0 (udi=/org/freedesktop/Hal/devices/temp/63)
4913: 18:48:32.693: probe-input.c:173: Cannot open /dev/input/ts0: Permission denied
18:48:32.694 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.694 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.694 [I] hald_dbus.c:2964: local_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected
18:48:32.694 [I] hald_dbus.c:2980: Client to local_server was disconnected
18:48:32.694 [I] hald_dbus.c:2990: unregistered
18:48:32.694 [I] util.c:554: child exited for pid 4913
18:48:32.694 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.694 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/event1 dev=/dev/input/event1 physdev=0x080c2400 udi=/org/freedesktop/Hal/devices/computer_i8042_Aux_Port
4914: 18:48:32.696: probe-input.c:169: Doing probe-input for /dev/input/event1 (udi=/org/freedesktop/Hal/devices/temp/64)
4914: 18:48:32.696: probe-input.c:173: Cannot open /dev/input/event1: Permission denied
18:48:32.697 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.697 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.697 [I] hald_dbus.c:2964: local_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected
18:48:32.697 [I] hald_dbus.c:2980: Client to local_server was disconnected
18:48:32.697 [I] hald_dbus.c:2990: unregistered
18:48:32.697 [I] util.c:554: child exited for pid 4914
18:48:32.697 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.697 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/mouse0 dev=/dev/input/mouse0 physdev=0x080c2400 udi=/org/freedesktop/Hal/devices/computer_i8042_Aux_Port
4915: 18:48:32.699: probe-input.c:169: Doing probe-input for /dev/input/mouse0 (udi=/org/freedesktop/Hal/devices/temp/65)
4915: 18:48:32.699: probe-input.c:173: Cannot open /dev/input/mouse0: Permission denied
18:48:32.699 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.699 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.699 [I] hald_dbus.c:2964: local_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected
18:48:32.699 [I] hald_dbus.c:2980: Client to local_server was disconnected
18:48:32.699 [I] hald_dbus.c:2990: unregistered
18:48:32.699 [I] util.c:554: child exited for pid 4915
18:48:32.699 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.700 [I] physdev.c:1404: phys_add: subsys=platform sysfs_path=/sys/devices/platform/vesafb.0, parent=0x00000000, parent->udi=(null)
18:48:32.701 [I] classdev.c:1211: class_add: subsys=graphics sysfs_path=/sys/class/graphics/fb0 dev=/dev/fb/0 physdev=0x00000000 udi=(null)
18:48:32.701 [I] classdev.c:1211: class_add: subsys=ppp sysfs_path=/sys/class/ppp/ppp dev=/dev/ppp physdev=0x00000000 udi=(null)
18:48:32.701 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/sequencer2 dev=/dev/sound/sequencer2 physdev=0x00000000 udi=(null)
18:48:32.704 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_oss_sequencer
18:48:32.704 [I] hald.c:89: Added device to GDL; device=0x080c6eb8, udi=/org/freedesktop/Hal/devices/computer_oss_sequencer
18:48:32.704 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/sequencer dev=/dev/sound/sequencer physdev=0x00000000 udi=(null)
18:48:32.707 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_oss_sequencer_0
18:48:32.707 [I] hald.c:89: Added device to GDL; device=0x080c29e8, udi=/org/freedesktop/Hal/devices/computer_oss_sequencer_0
18:48:32.707 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/seq dev=/dev/snd/seq physdev=0x00000000 udi=(null)
18:48:32.710 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_alsa_sequencer
18:48:32.710 [I] hald.c:89: Added device to GDL; device=0x080c28c8, udi=/org/freedesktop/Hal/devices/computer_alsa_sequencer
18:48:32.710 [I] classdev.c:1211: class_add: subsys=sound sysfs_path=/sys/class/sound/timer dev=/dev/snd/timer physdev=0x00000000 udi=(null)
18:48:32.713 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/computer_alsa_timer
18:48:32.713 [I] hald.c:89: Added device to GDL; device=0x08165448, udi=/org/freedesktop/Hal/devices/computer_alsa_timer
18:48:32.713 [I] classdev.c:1211: class_add: subsys=vc sysfs_path=/sys/class/vc/vcsa1 dev=/dev/vcc/a1 physdev=0x00000000 udi=(null)
18:48:32.713 [I] classdev.c:1211: class_add: subsys=vc sysfs_path=/sys/class/vc/vcs1 dev=/dev/vcc/1 physdev=0x00000000 udi=(null)
18:48:32.713 [I] classdev.c:1211: class_add: subsys=vc sysfs_path=/sys/class/vc/vcsa dev=/dev/vcc/a0 physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=vc sysfs_path=/sys/class/vc/vcs dev=/dev/vcc/0 physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/kmsg dev=/dev/kmsg physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/urandom dev=/dev/urandom physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/random dev=/dev/random physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/full dev=/dev/full physdev=0x00000000 udi=(null)
18:48:32.714 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/zero dev=/dev/zero physdev=0x00000000 udi=(null)
4911: ###################################
4911: fstab-sync entering; --clean udi=/org/freedesktop/Hal/devices/computer
4911: Acquiring advisory lock on /etc/fstab
4911: Lock acquired
18:48:32.716 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/port dev=/dev/port physdev=0x00000000 udi=(null)
18:48:32.716 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/null dev=/dev/null physdev=0x00000000 udi=(null)
18:48:32.716 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/kmem dev=/dev/kmem physdev=0x00000000 udi=(null)
18:48:32.716 [I] classdev.c:1211: class_add: subsys=mem sysfs_path=/sys/class/mem/mem dev=/dev/mem physdev=0x00000000 udi=(null)
18:48:32.716 [I] classdev.c:1211: class_add: subsys=net sysfs_path=/sys/class/net/sit0 dev= physdev=0x00000000 udi=(null)
18:48:32.719 [I] classdev.c:1071: Add callouts completed udi=/org/freedesktop/Hal/devices/net_00_00_00_00
18:48:32.719 [I] hald.c:89: Added device to GDL; device=0x0808c450, udi=/org/freedesktop/Hal/devices/net_00_00_00_00
18:48:32.719 [I] classdev.c:1211: class_add: subsys=net sysfs_path=/sys/class/net/lo dev= physdev=0x00000000 udi=(null)
18:48:32.720 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/event2 dev=/dev/input/event2 physdev=0x00000000 udi=(null)
4916: 18:48:32.722: probe-input.c:169: Doing probe-input for /dev/input/event2 (udi=/org/freedesktop/Hal/devices/temp/71)
4916: 18:48:32.722: probe-input.c:173: Cannot open /dev/input/event2: Permission denied
18:48:32.722 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.722 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.722 [I] hald_dbus.c:2964: local_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected
18:48:32.722 [I] hald_dbus.c:2980: Client to local_server was disconnected
18:48:32.722 [I] hald_dbus.c:2990: unregistered
18:48:32.722 [I] util.c:554: child exited for pid 4916
18:48:32.722 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.722 [I] classdev.c:1211: class_add: subsys=input sysfs_path=/sys/class/input/mice dev=/dev/input/mice physdev=0x00000000 udi=(null)
4917: 18:48:32.724: probe-input.c:169: Doing probe-input for /dev/input/mice (udi=/org/freedesktop/Hal/devices/temp/72)
4917: 18:48:32.724: probe-input.c:173: Cannot open /dev/input/mice: Permission denied
18:48:32.725 [I] hald_dbus.c:3002: 4887: Got a connection
18:48:32.725 [I] hald_dbus.c:3003: dbus_connection_get_is_connected = 1
18:48:32.725 [I] hald_dbus.c:2964: local_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected
18:48:32.725 [I] hald_dbus.c:2980: Client to local_server was disconnected
18:48:32.725 [I] hald_dbus.c:2990: unregistered
18:48:32.725 [I] util.c:554: child exited for pid 4917
18:48:32.725 [I] classdev.c:1127: entering; timed_out=0, return_code=1
18:48:32.725 [I] classdev.c:1211: class_add: subsys=misc sysfs_path=/sys/class/misc/rtc dev=/dev/misc/rtc physdev=0x00000000 udi=(null)
18:48:32.725 [I] classdev.c:1211: class_add: subsys=misc sysfs_path=/sys/class/misc/psaux dev=/dev/misc/psaux physdev=0x00000000 udi=(null)
18:48:32.725 [I] classdev.c:1211: class_add: subsys=misc sysfs_path=/sys/class/misc/hpet dev=/dev/hpet physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=graphics sysfs_path=/sys/class/graphics/fb1 dev=/dev/fb/1 physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyAGS3 dev=/dev/tts/AGS3 physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyef dev=/dev/ttyef physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyee dev=/dev/ttyee physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyed dev=/dev/ttyed physdev=0x00000000 udi=(null)
18:48:32.726 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyec dev=/dev/ttyec physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyeb dev=/dev/ttyeb physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyea dev=/dev/ttyea physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye9 dev=/dev/ttye9 physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye8 dev=/dev/ttye8 physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye7 dev=/dev/ttye7 physdev=0x00000000 udi=(null)
18:48:32.727 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye6 dev=/dev/ttye6 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye5 dev=/dev/ttye5 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye4 dev=/dev/ttye4 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye3 dev=/dev/ttye3 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye2 dev=/dev/ttye2 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye1 dev=/dev/ttye1 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttye0 dev=/dev/ttye0 physdev=0x00000000 udi=(null)
18:48:32.728 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttydf dev=/dev/ttydf physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyde dev=/dev/ttyde physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttydd dev=/dev/ttydd physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttydc dev=/dev/ttydc physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttydb dev=/dev/ttydb physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyda dev=/dev/ttyda physdev=0x00000000 udi=(null)
18:48:32.729 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd9 dev=/dev/ttyd9 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd8 dev=/dev/ttyd8 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd7 dev=/dev/ttyd7 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd6 dev=/dev/ttyd6 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd5 dev=/dev/ttyd5 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd4 dev=/dev/ttyd4 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd3 dev=/dev/ttyd3 physdev=0x00000000 udi=(null)
18:48:32.730 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd2 dev=/dev/ttyd2 physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd1 dev=/dev/ttyd1 physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyd0 dev=/dev/ttyd0 physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttycf dev=/dev/ttycf physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyce dev=/dev/ttyce physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttycd dev=/dev/ttycd physdev=0x00000000 udi=(null)
18:48:32.731 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttycc dev=/dev/ttycc physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttycb dev=/dev/ttycb physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyca dev=/dev/ttyca physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc9 dev=/dev/ttyc9 physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc8 dev=/dev/ttyc8 physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc7 dev=/dev/ttyc7 physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc6 dev=/dev/ttyc6 physdev=0x00000000 udi=(null)
18:48:32.732 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc5 dev=/dev/ttyc5 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc4 dev=/dev/ttyc4 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc3 dev=/dev/ttyc3 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc2 dev=/dev/ttyc2 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc1 dev=/dev/ttyc1 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyc0 dev=/dev/ttyc0 physdev=0x00000000 udi=(null)
18:48:32.733 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttybf dev=/dev/ttybf physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttybe dev=/dev/ttybe physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttybd dev=/dev/ttybd physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttybc dev=/dev/ttybc physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttybb dev=/dev/ttybb physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyba dev=/dev/ttyba physdev=0x00000000 udi=(null)
18:48:32.734 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb9 dev=/dev/ttyb9 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb8 dev=/dev/ttyb8 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb7 dev=/dev/ttyb7 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb6 dev=/dev/ttyb6 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb5 dev=/dev/ttyb5 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb4 dev=/dev/ttyb4 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb3 dev=/dev/ttyb3 physdev=0x00000000 udi=(null)
18:48:32.735 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb2 dev=/dev/ttyb2 physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb1 dev=/dev/ttyb1 physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyb0 dev=/dev/ttyb0 physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyaf dev=/dev/ttyaf physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyae dev=/dev/ttyae physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyad dev=/dev/ttyad physdev=0x00000000 udi=(null)
18:48:32.736 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyac dev=/dev/ttyac physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyab dev=/dev/ttyab physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyaa dev=/dev/ttyaa physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya9 dev=/dev/ttya9 physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya8 dev=/dev/ttya8 physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya7 dev=/dev/ttya7 physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya6 dev=/dev/ttya6 physdev=0x00000000 udi=(null)
18:48:32.737 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya5 dev=/dev/ttya5 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya4 dev=/dev/ttya4 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya3 dev=/dev/ttya3 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya2 dev=/dev/ttya2 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya1 dev=/dev/ttya1 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttya0 dev=/dev/ttya0 physdev=0x00000000 udi=(null)
18:48:32.738 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyzf dev=/dev/ttyzf physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyze dev=/dev/ttyze physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyzd dev=/dev/ttyzd physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyzc dev=/dev/ttyzc physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyzb dev=/dev/ttyzb physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyza dev=/dev/ttyza physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz9 dev=/dev/ttyz9 physdev=0x00000000 udi=(null)
18:48:32.739 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz8 dev=/dev/ttyz8 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz7 dev=/dev/ttyz7 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz6 dev=/dev/ttyz6 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz5 dev=/dev/ttyz5 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz4 dev=/dev/ttyz4 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz3 dev=/dev/ttyz3 physdev=0x00000000 udi=(null)
18:48:32.740 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz2 dev=/dev/ttyz2 physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz1 dev=/dev/ttyz1 physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyz0 dev=/dev/ttyz0 physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyyf dev=/dev/ttyyf physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyye dev=/dev/ttyye physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyyd dev=/dev/ttyyd physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyyc dev=/dev/ttyyc physdev=0x00000000 udi=(null)
18:48:32.741 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyyb dev=/dev/ttyyb physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyya dev=/dev/ttyya physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy9 dev=/dev/ttyy9 physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy8 dev=/dev/ttyy8 physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy7 dev=/dev/ttyy7 physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy6 dev=/dev/ttyy6 physdev=0x00000000 udi=(null)
18:48:32.742 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy5 dev=/dev/ttyy5 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy4 dev=/dev/ttyy4 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy3 dev=/dev/ttyy3 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy2 dev=/dev/ttyy2 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy1 dev=/dev/ttyy1 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyy0 dev=/dev/ttyy0 physdev=0x00000000 udi=(null)
18:48:32.743 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxf dev=/dev/ttyxf physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxe dev=/dev/ttyxe physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxd dev=/dev/ttyxd physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxc dev=/dev/ttyxc physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxb dev=/dev/ttyxb physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyxa dev=/dev/ttyxa physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx9 dev=/dev/ttyx9 physdev=0x00000000 udi=(null)
18:48:32.744 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx8 dev=/dev/ttyx8 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx7 dev=/dev/ttyx7 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx6 dev=/dev/ttyx6 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx5 dev=/dev/ttyx5 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx4 dev=/dev/ttyx4 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx3 dev=/dev/ttyx3 physdev=0x00000000 udi=(null)
18:48:32.745 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx2 dev=/dev/ttyx2 physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx1 dev=/dev/ttyx1 physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyx0 dev=/dev/ttyx0 physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywf dev=/dev/ttywf physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywe dev=/dev/ttywe physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywd dev=/dev/ttywd physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywc dev=/dev/ttywc physdev=0x00000000 udi=(null)
18:48:32.746 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywb dev=/dev/ttywb physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttywa dev=/dev/ttywa physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw9 dev=/dev/ttyw9 physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw8 dev=/dev/ttyw8 physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw7 dev=/dev/ttyw7 physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw6 dev=/dev/ttyw6 physdev=0x00000000 udi=(null)
18:48:32.747 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw5 dev=/dev/ttyw5 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw4 dev=/dev/ttyw4 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw3 dev=/dev/ttyw3 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw2 dev=/dev/ttyw2 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw1 dev=/dev/ttyw1 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyw0 dev=/dev/ttyw0 physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyvf dev=/dev/ttyvf physdev=0x00000000 udi=(null)
18:48:32.748 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyve dev=/dev/ttyve physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyvd dev=/dev/ttyvd physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyvc dev=/dev/ttyvc physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyvb dev=/dev/ttyvb physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyva dev=/dev/ttyva physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv9 dev=/dev/ttyv9 physdev=0x00000000 udi=(null)
18:48:32.749 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv8 dev=/dev/ttyv8 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv7 dev=/dev/ttyv7 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv6 dev=/dev/ttyv6 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv5 dev=/dev/ttyv5 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv4 dev=/dev/ttyv4 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv3 dev=/dev/ttyv3 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv2 dev=/dev/ttyv2 physdev=0x00000000 udi=(null)
18:48:32.750 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv1 dev=/dev/ttyv1 physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyv0 dev=/dev/ttyv0 physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyuf dev=/dev/ttyuf physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyue dev=/dev/ttyue physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyud dev=/dev/ttyud physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyuc dev=/dev/ttyuc physdev=0x00000000 udi=(null)
18:48:32.751 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyub dev=/dev/ttyub physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyua dev=/dev/ttyua physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu9 dev=/dev/ttyu9 physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu8 dev=/dev/ttyu8 physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu7 dev=/dev/ttyu7 physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu6 dev=/dev/ttyu6 physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu5 dev=/dev/ttyu5 physdev=0x00000000 udi=(null)
18:48:32.752 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu4 dev=/dev/ttyu4 physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu3 dev=/dev/ttyu3 physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu2 dev=/dev/ttyu2 physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu1 dev=/dev/ttyu1 physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyu0 dev=/dev/ttyu0 physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttytf dev=/dev/ttytf physdev=0x00000000 udi=(null)
18:48:32.753 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyte dev=/dev/ttyte physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttytd dev=/dev/ttytd physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttytc dev=/dev/ttytc physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttytb dev=/dev/ttytb physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyta dev=/dev/ttyta physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt9 dev=/dev/ttyt9 physdev=0x00000000 udi=(null)
18:48:32.754 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt8 dev=/dev/ttyt8 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt7 dev=/dev/ttyt7 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt6 dev=/dev/ttyt6 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt5 dev=/dev/ttyt5 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt4 dev=/dev/ttyt4 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt3 dev=/dev/ttyt3 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt2 dev=/dev/ttyt2 physdev=0x00000000 udi=(null)
18:48:32.755 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt1 dev=/dev/ttyt1 physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyt0 dev=/dev/ttyt0 physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttysf dev=/dev/ttysf physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyse dev=/dev/ttyse physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttysd dev=/dev/ttysd physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttysc dev=/dev/ttysc physdev=0x00000000 udi=(null)
18:48:32.756 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttysb dev=/dev/ttysb physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttysa dev=/dev/ttysa physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys9 dev=/dev/ttys9 physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys8 dev=/dev/ttys8 physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys7 dev=/dev/ttys7 physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys6 dev=/dev/ttys6 physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys5 dev=/dev/ttys5 physdev=0x00000000 udi=(null)
18:48:32.757 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys4 dev=/dev/ttys4 physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys3 dev=/dev/ttys3 physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys2 dev=/dev/ttys2 physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys1 dev=/dev/ttys1 physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttys0 dev=/dev/ttys0 physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyrf dev=/dev/ttyrf physdev=0x00000000 udi=(null)
18:48:32.758 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyre dev=/dev/ttyre physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyrd dev=/dev/ttyrd physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyrc dev=/dev/ttyrc physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyrb dev=/dev/ttyrb physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyra dev=/dev/ttyra physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr9 dev=/dev/ttyr9 physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr8 dev=/dev/ttyr8 physdev=0x00000000 udi=(null)
18:48:32.759 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr7 dev=/dev/ttyr7 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr6 dev=/dev/ttyr6 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr5 dev=/dev/ttyr5 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr4 dev=/dev/ttyr4 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr3 dev=/dev/ttyr3 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr2 dev=/dev/ttyr2 physdev=0x00000000 udi=(null)
18:48:32.760 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr1 dev=/dev/ttyr1 physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyr0 dev=/dev/ttyr0 physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqf dev=/dev/ttyqf physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqe dev=/dev/ttyqe physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqd dev=/dev/ttyqd physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqc dev=/dev/ttyqc physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqb dev=/dev/ttyqb physdev=0x00000000 udi=(null)
18:48:32.761 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyqa dev=/dev/ttyqa physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq9 dev=/dev/ttyq9 physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq8 dev=/dev/ttyq8 physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq7 dev=/dev/ttyq7 physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq6 dev=/dev/ttyq6 physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq5 dev=/dev/ttyq5 physdev=0x00000000 udi=(null)
18:48:32.762 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq4 dev=/dev/ttyq4 physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq3 dev=/dev/ttyq3 physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq2 dev=/dev/ttyq2 physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq1 dev=/dev/ttyq1 physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyq0 dev=/dev/ttyq0 physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttypf dev=/dev/ttypf physdev=0x00000000 udi=(null)
18:48:32.763 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttype dev=/dev/ttype physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttypd dev=/dev/ttypd physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttypc dev=/dev/ttypc physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttypb dev=/dev/ttypb physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttypa dev=/dev/ttypa physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp9 dev=/dev/ttyp9 physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp8 dev=/dev/ttyp8 physdev=0x00000000 udi=(null)
18:48:32.764 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp7 dev=/dev/ttyp7 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp6 dev=/dev/ttyp6 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp5 dev=/dev/ttyp5 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp4 dev=/dev/ttyp4 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp3 dev=/dev/ttyp3 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp2 dev=/dev/ttyp2 physdev=0x00000000 udi=(null)
18:48:32.765 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp1 dev=/dev/ttyp1 physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ttyp0 dev=/dev/ttyp0 physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyef dev=/dev/ptyef physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyee dev=/dev/ptyee physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyed dev=/dev/ptyed physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyec dev=/dev/ptyec physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyeb dev=/dev/ptyeb physdev=0x00000000 udi=(null)
18:48:32.766 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyea dev=/dev/ptyea physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye9 dev=/dev/ptye9 physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye8 dev=/dev/ptye8 physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye7 dev=/dev/ptye7 physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye6 dev=/dev/ptye6 physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye5 dev=/dev/ptye5 physdev=0x00000000 udi=(null)
18:48:32.767 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye4 dev=/dev/ptye4 physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye3 dev=/dev/ptye3 physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye2 dev=/dev/ptye2 physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye1 dev=/dev/ptye1 physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptye0 dev=/dev/ptye0 physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptydf dev=/dev/ptydf physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyde dev=/dev/ptyde physdev=0x00000000 udi=(null)
18:48:32.768 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptydd dev=/dev/ptydd physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptydc dev=/dev/ptydc physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptydb dev=/dev/ptydb physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyda dev=/dev/ptyda physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd9 dev=/dev/ptyd9 physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd8 dev=/dev/ptyd8 physdev=0x00000000 udi=(null)
18:48:32.769 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd7 dev=/dev/ptyd7 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd6 dev=/dev/ptyd6 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd5 dev=/dev/ptyd5 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd4 dev=/dev/ptyd4 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd3 dev=/dev/ptyd3 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd2 dev=/dev/ptyd2 physdev=0x00000000 udi=(null)
18:48:32.770 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd1 dev=/dev/ptyd1 physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyd0 dev=/dev/ptyd0 physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptycf dev=/dev/ptycf physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyce dev=/dev/ptyce physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptycd dev=/dev/ptycd physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptycc dev=/dev/ptycc physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptycb dev=/dev/ptycb physdev=0x00000000 udi=(null)
18:48:32.771 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyca dev=/dev/ptyca physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc9 dev=/dev/ptyc9 physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc8 dev=/dev/ptyc8 physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc7 dev=/dev/ptyc7 physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc6 dev=/dev/ptyc6 physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc5 dev=/dev/ptyc5 physdev=0x00000000 udi=(null)
18:48:32.772 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc4 dev=/dev/ptyc4 physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc3 dev=/dev/ptyc3 physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc2 dev=/dev/ptyc2 physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc1 dev=/dev/ptyc1 physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyc0 dev=/dev/ptyc0 physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptybf dev=/dev/ptybf physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptybe dev=/dev/ptybe physdev=0x00000000 udi=(null)
18:48:32.773 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptybd dev=/dev/ptybd physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptybc dev=/dev/ptybc physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptybb dev=/dev/ptybb physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyba dev=/dev/ptyba physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb9 dev=/dev/ptyb9 physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb8 dev=/dev/ptyb8 physdev=0x00000000 udi=(null)
18:48:32.774 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb7 dev=/dev/ptyb7 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb6 dev=/dev/ptyb6 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb5 dev=/dev/ptyb5 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb4 dev=/dev/ptyb4 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb3 dev=/dev/ptyb3 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb2 dev=/dev/ptyb2 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb1 dev=/dev/ptyb1 physdev=0x00000000 udi=(null)
18:48:32.775 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyb0 dev=/dev/ptyb0 physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyaf dev=/dev/ptyaf physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyae dev=/dev/ptyae physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyad dev=/dev/ptyad physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyac dev=/dev/ptyac physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyab dev=/dev/ptyab physdev=0x00000000 udi=(null)
18:48:32.776 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyaa dev=/dev/ptyaa physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya9 dev=/dev/ptya9 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya8 dev=/dev/ptya8 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya7 dev=/dev/ptya7 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya6 dev=/dev/ptya6 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya5 dev=/dev/ptya5 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya4 dev=/dev/ptya4 physdev=0x00000000 udi=(null)
18:48:32.777 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya3 dev=/dev/ptya3 physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya2 dev=/dev/ptya2 physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya1 dev=/dev/ptya1 physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptya0 dev=/dev/ptya0 physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyzf dev=/dev/ptyzf physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyze dev=/dev/ptyze physdev=0x00000000 udi=(null)
18:48:32.778 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyzd dev=/dev/ptyzd physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyzc dev=/dev/ptyzc physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyzb dev=/dev/ptyzb physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyza dev=/dev/ptyza physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz9 dev=/dev/ptyz9 physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz8 dev=/dev/ptyz8 physdev=0x00000000 udi=(null)
18:48:32.779 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz7 dev=/dev/ptyz7 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz6 dev=/dev/ptyz6 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz5 dev=/dev/ptyz5 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz4 dev=/dev/ptyz4 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz3 dev=/dev/ptyz3 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz2 dev=/dev/ptyz2 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz1 dev=/dev/ptyz1 physdev=0x00000000 udi=(null)
18:48:32.780 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyz0 dev=/dev/ptyz0 physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyyf dev=/dev/ptyyf physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyye dev=/dev/ptyye physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyyd dev=/dev/ptyyd physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyyc dev=/dev/ptyyc physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyyb dev=/dev/ptyyb physdev=0x00000000 udi=(null)
18:48:32.781 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyya dev=/dev/ptyya physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy9 dev=/dev/ptyy9 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy8 dev=/dev/ptyy8 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy7 dev=/dev/ptyy7 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy6 dev=/dev/ptyy6 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy5 dev=/dev/ptyy5 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy4 dev=/dev/ptyy4 physdev=0x00000000 udi=(null)
18:48:32.782 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy3 dev=/dev/ptyy3 physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy2 dev=/dev/ptyy2 physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy1 dev=/dev/ptyy1 physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyy0 dev=/dev/ptyy0 physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxf dev=/dev/ptyxf physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxe dev=/dev/ptyxe physdev=0x00000000 udi=(null)
18:48:32.783 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxd dev=/dev/ptyxd physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxc dev=/dev/ptyxc physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxb dev=/dev/ptyxb physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyxa dev=/dev/ptyxa physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx9 dev=/dev/ptyx9 physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx8 dev=/dev/ptyx8 physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx7 dev=/dev/ptyx7 physdev=0x00000000 udi=(null)
18:48:32.784 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx6 dev=/dev/ptyx6 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx5 dev=/dev/ptyx5 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx4 dev=/dev/ptyx4 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx3 dev=/dev/ptyx3 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx2 dev=/dev/ptyx2 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx1 dev=/dev/ptyx1 physdev=0x00000000 udi=(null)
18:48:32.785 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyx0 dev=/dev/ptyx0 physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywf dev=/dev/ptywf physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywe dev=/dev/ptywe physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywd dev=/dev/ptywd physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywc dev=/dev/ptywc physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywb dev=/dev/ptywb physdev=0x00000000 udi=(null)
18:48:32.786 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptywa dev=/dev/ptywa physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw9 dev=/dev/ptyw9 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw8 dev=/dev/ptyw8 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw7 dev=/dev/ptyw7 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw6 dev=/dev/ptyw6 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw5 dev=/dev/ptyw5 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw4 dev=/dev/ptyw4 physdev=0x00000000 udi=(null)
18:48:32.787 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw3 dev=/dev/ptyw3 physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw2 dev=/dev/ptyw2 physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw1 dev=/dev/ptyw1 physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyw0 dev=/dev/ptyw0 physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyvf dev=/dev/ptyvf physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyve dev=/dev/ptyve physdev=0x00000000 udi=(null)
18:48:32.788 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyvd dev=/dev/ptyvd physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyvc dev=/dev/ptyvc physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyvb dev=/dev/ptyvb physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyva dev=/dev/ptyva physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv9 dev=/dev/ptyv9 physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv8 dev=/dev/ptyv8 physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv7 dev=/dev/ptyv7 physdev=0x00000000 udi=(null)
18:48:32.789 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv6 dev=/dev/ptyv6 physdev=0x00000000 udi=(null)
18:48:32.790 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv5 dev=/dev/ptyv5 physdev=0x00000000 udi=(null)
18:48:32.790 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv4 dev=/dev/ptyv4 physdev=0x00000000 udi=(null)
18:48:32.790 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv3 dev=/dev/ptyv3 physdev=0x00000000 udi=(null)
18:48:32.790 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv2 dev=/dev/ptyv2 physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv1 dev=/dev/ptyv1 physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyv0 dev=/dev/ptyv0 physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyuf dev=/dev/ptyuf physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyue dev=/dev/ptyue physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyud dev=/dev/ptyud physdev=0x00000000 udi=(null)
18:48:32.794 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyuc dev=/dev/ptyuc physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyub dev=/dev/ptyub physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyua dev=/dev/ptyua physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu9 dev=/dev/ptyu9 physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu8 dev=/dev/ptyu8 physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu7 dev=/dev/ptyu7 physdev=0x00000000 udi=(null)
18:48:32.795 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu6 dev=/dev/ptyu6 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu5 dev=/dev/ptyu5 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu4 dev=/dev/ptyu4 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu3 dev=/dev/ptyu3 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu2 dev=/dev/ptyu2 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu1 dev=/dev/ptyu1 physdev=0x00000000 udi=(null)
18:48:32.796 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyu0 dev=/dev/ptyu0 physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptytf dev=/dev/ptytf physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyte dev=/dev/ptyte physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptytd dev=/dev/ptytd physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptytc dev=/dev/ptytc physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptytb dev=/dev/ptytb physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyta dev=/dev/ptyta physdev=0x00000000 udi=(null)
18:48:32.797 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt9 dev=/dev/ptyt9 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt8 dev=/dev/ptyt8 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt7 dev=/dev/ptyt7 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt6 dev=/dev/ptyt6 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt5 dev=/dev/ptyt5 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt4 dev=/dev/ptyt4 physdev=0x00000000 udi=(null)
18:48:32.798 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt3 dev=/dev/ptyt3 physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt2 dev=/dev/ptyt2 physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt1 dev=/dev/ptyt1 physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyt0 dev=/dev/ptyt0 physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptysf dev=/dev/ptysf physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyse dev=/dev/ptyse physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptysd dev=/dev/ptysd physdev=0x00000000 udi=(null)
18:48:32.799 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptysc dev=/dev/ptysc physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptysb dev=/dev/ptysb physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptysa dev=/dev/ptysa physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys9 dev=/dev/ptys9 physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys8 dev=/dev/ptys8 physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys7 dev=/dev/ptys7 physdev=0x00000000 udi=(null)
18:48:32.800 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys6 dev=/dev/ptys6 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys5 dev=/dev/ptys5 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys4 dev=/dev/ptys4 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys3 dev=/dev/ptys3 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys2 dev=/dev/ptys2 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys1 dev=/dev/ptys1 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptys0 dev=/dev/ptys0 physdev=0x00000000 udi=(null)
18:48:32.801 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyrf dev=/dev/ptyrf physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyre dev=/dev/ptyre physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyrd dev=/dev/ptyrd physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyrc dev=/dev/ptyrc physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyrb dev=/dev/ptyrb physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyra dev=/dev/ptyra physdev=0x00000000 udi=(null)
18:48:32.802 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr9 dev=/dev/ptyr9 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr8 dev=/dev/ptyr8 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr7 dev=/dev/ptyr7 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr6 dev=/dev/ptyr6 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr5 dev=/dev/ptyr5 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr4 dev=/dev/ptyr4 physdev=0x00000000 udi=(null)
18:48:32.803 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr3 dev=/dev/ptyr3 physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr2 dev=/dev/ptyr2 physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr1 dev=/dev/ptyr1 physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyr0 dev=/dev/ptyr0 physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqf dev=/dev/ptyqf physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqe dev=/dev/ptyqe physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqd dev=/dev/ptyqd physdev=0x00000000 udi=(null)
18:48:32.804 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqc dev=/dev/ptyqc physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqb dev=/dev/ptyqb physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyqa dev=/dev/ptyqa physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq9 dev=/dev/ptyq9 physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq8 dev=/dev/ptyq8 physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq7 dev=/dev/ptyq7 physdev=0x00000000 udi=(null)
18:48:32.805 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq6 dev=/dev/ptyq6 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq5 dev=/dev/ptyq5 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq4 dev=/dev/ptyq4 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq3 dev=/dev/ptyq3 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq2 dev=/dev/ptyq2 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq1 dev=/dev/ptyq1 physdev=0x00000000 udi=(null)
18:48:32.806 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyq0 dev=/dev/ptyq0 physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptypf dev=/dev/ptypf physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptype dev=/dev/ptype physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptypd dev=/dev/ptypd physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptypc dev=/dev/ptypc physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptypb dev=/dev/ptypb physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptypa dev=/dev/ptypa physdev=0x00000000 udi=(null)
18:48:32.807 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp9 dev=/dev/ptyp9 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp8 dev=/dev/ptyp8 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp7 dev=/dev/ptyp7 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp6 dev=/dev/ptyp6 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp5 dev=/dev/ptyp5 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp4 dev=/dev/ptyp4 physdev=0x00000000 udi=(null)
18:48:32.808 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp3 dev=/dev/ptyp3 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp2 dev=/dev/ptyp2 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp1 dev=/dev/ptyp1 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptyp0 dev=/dev/ptyp0 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty63 dev=/dev/vc/63 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty62 dev=/dev/vc/62 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty61 dev=/dev/vc/61 physdev=0x00000000 udi=(null)
18:48:32.809 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty60 dev=/dev/vc/60 physdev=0x00000000 udi=(null)
18:48:32.810 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty59 dev=/dev/vc/59 physdev=0x00000000 udi=(null)
18:48:32.810 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty58 dev=/dev/vc/58 physdev=0x00000000 udi=(null)
18:48:32.810 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty57 dev=/dev/vc/57 physdev=0x00000000 udi=(null)
18:48:32.810 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty56 dev=/dev/vc/56 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty55 dev=/dev/vc/55 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty54 dev=/dev/vc/54 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty53 dev=/dev/vc/53 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty52 dev=/dev/vc/52 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty51 dev=/dev/vc/51 physdev=0x00000000 udi=(null)
18:48:32.811 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty50 dev=/dev/vc/50 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty49 dev=/dev/vc/49 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty48 dev=/dev/vc/48 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty47 dev=/dev/vc/47 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty46 dev=/dev/vc/46 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty45 dev=/dev/vc/45 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty44 dev=/dev/vc/44 physdev=0x00000000 udi=(null)
18:48:32.812 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty43 dev=/dev/vc/43 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty42 dev=/dev/vc/42 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty41 dev=/dev/vc/41 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty40 dev=/dev/vc/40 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty39 dev=/dev/vc/39 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty38 dev=/dev/vc/38 physdev=0x00000000 udi=(null)
18:48:32.813 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty37 dev=/dev/vc/37 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty36 dev=/dev/vc/36 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty35 dev=/dev/vc/35 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty34 dev=/dev/vc/34 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty33 dev=/dev/vc/33 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty32 dev=/dev/vc/32 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty31 dev=/dev/vc/31 physdev=0x00000000 udi=(null)
18:48:32.814 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty30 dev=/dev/vc/30 physdev=0x00000000 udi=(null)
18:48:32.815 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty29 dev=/dev/vc/29 physdev=0x00000000 udi=(null)
18:48:32.815 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty28 dev=/dev/vc/28 physdev=0x00000000 udi=(null)
18:48:32.815 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty27 dev=/dev/vc/27 physdev=0x00000000 udi=(null)
18:48:32.815 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty26 dev=/dev/vc/26 physdev=0x00000000 udi=(null)
18:48:32.815 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty25 dev=/dev/vc/25 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty24 dev=/dev/vc/24 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty23 dev=/dev/vc/23 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty22 dev=/dev/vc/22 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty21 dev=/dev/vc/21 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty20 dev=/dev/vc/20 physdev=0x00000000 udi=(null)
18:48:32.816 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty19 dev=/dev/vc/19 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty18 dev=/dev/vc/18 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty17 dev=/dev/vc/17 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty16 dev=/dev/vc/16 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty15 dev=/dev/vc/15 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty14 dev=/dev/vc/14 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty13 dev=/dev/vc/13 physdev=0x00000000 udi=(null)
18:48:32.817 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty12 dev=/dev/vc/12 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty11 dev=/dev/vc/11 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty10 dev=/dev/vc/10 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty9 dev=/dev/vc/9 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty8 dev=/dev/vc/8 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty7 dev=/dev/vc/7 physdev=0x00000000 udi=(null)
18:48:32.818 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty6 dev=/dev/vc/6 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty5 dev=/dev/vc/5 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty4 dev=/dev/vc/4 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty3 dev=/dev/vc/3 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty2 dev=/dev/vc/2 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty1 dev=/dev/vc/1 physdev=0x00000000 udi=(null)
18:48:32.819 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty0 dev=/dev/vc/0 physdev=0x00000000 udi=(null)
18:48:32.820 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/ptmx dev=/dev/ptmx physdev=0x00000000 udi=(null)
18:48:32.820 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/console dev=/dev/console physdev=0x00000000 udi=(null)
18:48:32.820 [I] classdev.c:1211: class_add: subsys=tty sysfs_path=/sys/class/tty/tty dev=/dev/tty physdev=0x00000000 udi=(null)
18:48:32.820 [I] classdev.c:1211: class_add: subsys=pci_bus sysfs_path=/sys/class/pci_bus/0000:01 dev= physdev=0x00000000 udi=(null)
18:48:32.820 [I] classdev.c:1211: class_add: subsys=pci_bus sysfs_path=/sys/class/pci_bus/0000:00 dev= physdev=0x00000000 udi=(null)
18:48:32.820 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop7 dev=/dev/loop/7 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.820 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/7
18:48:32.820 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.821 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop6 dev=/dev/loop/6 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.821 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/6
18:48:32.821 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.821 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop5 dev=/dev/loop/5 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.822 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/5
18:48:32.822 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.822 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop4 dev=/dev/loop/4 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.822 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/4
18:48:32.822 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.822 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop3 dev=/dev/loop/3 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.822 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/3
18:48:32.822 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.822 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop2 dev=/dev/loop/2 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.822 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/2
18:48:32.822 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.823 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop1 dev=/dev/loop/1 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.823 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/1
18:48:32.823 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.823 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/loop0 dev=/dev/loop/0 is_part=0, parent=0x00000000, parent->udi=(null)
18:48:32.823 [I] blockdev.c:477: get_luks_uuid: device_file=/dev/loop/0
18:48:32.823 [I] blockdev.c:608: Ignoring hotplug event - no parent
18:48:32.823 [I] blockdev.c:566: block_add: sysfs_path=/sys/block/sda dev=/dev/scsi/host0/bus0/target0/lun0/disc is_part=0, parent=0x080bd960, parent->udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0
18:48:32.824 [I] blockdev.c:722: parent=0x080bd960 parent->udi=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0, udi_it=/org/freedesktop/Hal/devices/computer, d_it=0x00000000, hal_device_get_udi(parent)=/org/freedesktop/Hal/devices/pci_1106_3149_scsi_host_0_scsi_device_lun0

** ERROR **: file blockdev.c: line 723 (hotplug_event_begin_add_blockdev): assertion failed: (d_it != NULL)
aborting...
-------------- next part --------------



More information about the hal mailing list