On Tue, 2004-08-24 at 02:34, Dmitry Torokhov wrote: > Hi, > > I have a bunch of patches that I would like you to take a look at: > > 01-acpi-scan-kobject.patch > - properly create/register kobjects - take reference to the parent > since kobject_unregister will try dropping it potentially > (if ACPI was ever to release created devices) causing parent be > destroyed early) and use kobject_set_name to properly set name. I'll take a look. > 02-acpi-event-code.patch > - move event (userspace signalling) code from acpi/bus.c to > acpi/event.c as too many implementation details were exported, > plus some additional fixes to the event handling code. I'll take a look. > 03-acpi-use-rwsem.patch > - kill brandead usage of acpi_device_lock & list_for_eacj_safe. > list_for_each_safe is only safe in the sense that current > element can be safely removed by the same thread that is using > list_for_each_safe. List still has to be protected from other > threads for entire duration of list traversal. > Use acpi_subsys.rwsem instead of acpi_device_lock to protect > lists. sounds like a bug. > Btw, why don't we just convert ACPI to be standard driver core bus with > standard drivers and devices? I could cook up something... The > /sys/firmware/acpi hierarchy is not populated with any useful data yet > so there should be no concern of breakign userspace interface (I am mot > talking about removing /proc/acpi part at the moment). Funny you should mention it. My current opinion is that /sys/firmware/acpi should probably not exist at all, and that there should be a single /sys/devices including both ACPI-enumerated and pci-enumerated devices. Adam and I have been ganging up on Patrick on this, but we don't have him convinced yet... > 04-acpi-multiple-readers.patch > - allow multiple readrs access /proc/acpi/event, every event is > delivered to all readers. Also limit number of pending events > to 64 (per reader) so if reader is stuck ACPI does not consume > all memory. > > Can be user by various daemons, I could see cpufreqd listening > for battery insertion/removal events and debugging is much > easier too. others have been frustrated by this also, so I tend to agree that we should probably address it. Somebody can still contact acpid if they want to... At some point, of course, we're going to have to move this out of /proc... > The patches are against last night pull from Linus repo. Note that if you did individual file comments, then I can preserve your comments if you export with bjorn's bkexport script (attached). thanks, -Len