Displaying 13 results from an estimated 13 matches for "id_path".
2013 May 15
8
[Bug 64645] New: Massive corruption
...iled (/var/run/acpid.socket) (Connection
refused)
[ 1143.691] (II) Open ACPI successful (/var/run/acpid.socket)
udev information:
-----------------
P: /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
E: DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
E: EV=3
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXPWRBN:00
E: ID_PATH_TAG=acpi-LNXPWRBN_00
E: KEY=10000000000000 0
E: MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw
E: NAME="Power Button"
E: PHYS="LNXPWRBN/button/input0"
E: PRODUCT=19/0/1/0
E: PROP=0
E: SUBSYSTEM=input
E: UDEV_LOG=3
E: USEC_INITIALIZED=3821882
P:...
2012 Feb 06
8
Cdrom on Linux domU PV
I tried to use cdrom in domU linux pv (Linux Mint 11 based on Natty).
With ''/mnt/vm/iso/test.iso,raw,xvdb,ro,cdrom'', Mint sees it as internal disk
(not cdrom) and only administrators can mount it.
I tried also ''/dev/scd0,raw,xvdb,ro,cdrom'' does the same thing.
Is possible use cdrom on linux domU pv full working where also normal user
can mount it without
2009 Apr 18
4
no ForceFeedback in Wine
Hey Guys,
The ForceFeedback from my Microsoft Sidewinder ForceFeedback Wheel doesn't work with Wine.
I compiled wine myself and "ac_cv_member_struct_ff_effect_direction=yes" was set in the config.log like it is told here:
http://wiki.winehq.org/ForceFeedback
I also checked that FF is working with BZFlag under Linux. When i play BZFlag with Wine, the FF-Effects are missing.
I
2010 Apr 29
24
[Bug 27905] New: DVI monitor is blank - DVI detected as Display Port ?
.../event0
S: char/13:64
S: input/by-path/platform-i8042-serio-0-event-kbd
E: UDEV_LOG=3
E: DEVPATH=/devices/platform/i8042/serio0/input/input0/event0
E: MAJOR=13
E: MINOR=64
E: DEVNAME=/dev/input/event0
E: SUBSYSTEM=input
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_SERIAL=noserial
E: ID_PATH=platform-i8042-serio-0
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: XKBVARIANT=latin9
E: XKBOPTIONS=lv3:ralt_switch
E: x11_driver=evdev
E: DMI_VENDOR=Dell Inc.
E: DEVLINKS=/dev/char/13:64 /dev/input/by-path/platform-i8042-serio-0-event-kbd
P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1/event1...
2008 Nov 25
1
Correct way to change I/O scheduler in a iSCSI dev
Hi,
What's the correct way to change configuration parameters for an iSCSI
device? For example I/O scheduler, max_sectors_kb, etc...
I could add commands to the S99local script:
echo noop > /sys/block/sdb/queue/scheduler
echo 64 > /sys/block/sdb/queue/max_hw_sectors_kb
Unfortunately, iSCSI device names might change from sdb to, say, sdc
(server reboot, iSCSI target reconnection).
2014 Mar 21
0
[PATCH RFC V2 4/4] tools: virtio: add a top-like utility for displaying vhost satistics
...struct.unpack(fmt, self.file.read(bytes))))
+
+class Event(object):
+ def __init__(self, group, name, event_set, tracepoint, filter = None):
+ self.name = name
+ attr = perf_event_attr()
+ attr.type = PERF_TYPE_TRACEPOINT
+ attr.size = ctypes.sizeof(attr)
+ id_path = os.path.join(sys_tracing, 'events', event_set,
+ tracepoint, 'id')
+ id = int(file(id_path).read())
+ attr.config = id
+ attr.sample_type = (PERF_SAMPLE_RAW
+ | PERF_SAMPLE_TIME
+...
2009 Jun 10
0
KDE and mounting CD's / DVD's without noexec
...39;/lib/udev/scsi_id' (stdout) 'ID_TYPE=cd'
run_program: '/lib/udev/scsi_id' (stdout) 'ID_BUS=scsi'
run_program: '/lib/udev/scsi_id' returned with status 0
run_program: '/lib/udev/path_id /block/sr0'
run_program: '/lib/udev/path_id' (stdout)
'ID_PATH=pci-0000:00:1f.2-scsi-1:0:0:0'
run_program: '/lib/udev/path_id' returned with status 0
udev_rules_get_name: add symlink
'disk/by-path/pci-0000:00:1f.2-scsi-1:0:0:0'
udev_device_event: device '/block/sr0' already in database, validate
currently present symlinks
udev_nod...
2012 Apr 10
3
[PATCH 0/2] adding tracepoints to vhost
To help in vhost analyzing, the following series adding basic tracepoints to
vhost. Operations of both virtqueues and vhost works were traced in current
implementation, net code were untouched. A top-like satistics displaying script
were introduced to help the troubleshooting.
TODO:
- net specific tracepoints?
---
Jason Wang (2):
vhost: basic tracepoints
tools: virtio: add a
2012 Apr 10
3
[PATCH 0/2] adding tracepoints to vhost
To help in vhost analyzing, the following series adding basic tracepoints to
vhost. Operations of both virtqueues and vhost works were traced in current
implementation, net code were untouched. A top-like satistics displaying script
were introduced to help the troubleshooting.
TODO:
- net specific tracepoints?
---
Jason Wang (2):
vhost: basic tracepoints
tools: virtio: add a
2014 Mar 21
5
[PATCH RFC V2 0/4] Adding tracepoints to vhost/net
Recent debugging on vhost net zerocopy shows the need of
tracepoints. So to help in vhost{net} debugging and performance
analyzing, the following series adding basic tracepoints to
vhost. Operations of both vhost and vhost_net were traced in current
implementation.
A top-like satistics displaying script were introduced to help the
troubleshooting:
vhost statistics
vhost_virtio_update_used_idx
2014 Mar 21
5
[PATCH RFC V2 0/4] Adding tracepoints to vhost/net
Recent debugging on vhost net zerocopy shows the need of
tracepoints. So to help in vhost{net} debugging and performance
analyzing, the following series adding basic tracepoints to
vhost. Operations of both vhost and vhost_net were traced in current
implementation.
A top-like satistics displaying script were introduced to help the
troubleshooting:
vhost statistics
vhost_virtio_update_used_idx
2014 Aug 04
13
[Bug 82152] New: any OpenGL application crashes X, locks up machine with nouveau and PRIME
https://bugs.freedesktop.org/show_bug.cgi?id=82152
Priority: medium
Bug ID: 82152
Assignee: nouveau at lists.freedesktop.org
Summary: any OpenGL application crashes X, locks up machine
with nouveau and PRIME
Severity: normal
Classification: Unclassified
OS: Linux (All)
Reporter: celticmadman at
2009 Mar 15
11
Grand prix legends recognize only two joystick axis
Hi,
I'm trying to use my saitek cyborg evolution to play with grand prix legends.
The device is correctly recognized by linux as a 6 axis 12 button device:
Code:
jstest /dev/input/js0
Driver version is 2.1.0.
Joystick (Saitek Cyborg USB Stick) has 6 axes (X, Y, Z, Rz, Hat0X, Hat0Y)
and 12 buttons (Trigger, ThumbBtn, ThumbBtn2, TopBtn, TopBtn2, PinkieBtn, BaseBtn, BaseBtn2, BaseBtn3, BaseBtn4,