RE: [RFC][PATCH] ACPICA: Drop Operand cache

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Yes, I think maybe the cache stuff can go away. I see no performance improvement with the (local) cache at the application level -- in fact, it is actually slower.

I think the cache code was most useful during the early stages when we were debugging the dynamic object deletion and other object handling code, and for gathering our own memory use statistics.

With that being said, I don't want to do this all in one big step. I have noticed some instability if the local cache code is disturbed or if the cache acquire/release object interfaces are implemented with simple calls to malloc/free. The logical steps would seem to me to be:

1) Implement the AcpiOs* cache interfaces with simple malloc/free calls.

2) Replace all acquire/release calls with malloc/free calls, remove cache create/delete/purge calls, remove all cache statistical information and debugger cache support.

3) Allocate only the size needed for the desired objects, not the union size.

Each step has risk, so I would not want to do them all at once.

Also, I'd like to poll a few of our other major users to get their feedback and input.

Thanks,
Bob


>-----Original Message-----
>From: Alexey Starikovskiy [mailto:astarikovskiy@xxxxxxx]
>Sent: Friday, April 24, 2009 7:22 AM
>To: Moore, Robert
>Cc: Len Brown; ACPI Devel Maling List
>Subject: Re: [RFC][PATCH] ACPICA: Drop Operand cache
>
>Moore, Robert wrote:
>> I've had a bit of time to start looking at this again.
>>
>> I'm still a bit confused about what this is trying to accomplish.
>> Is it a performance gain?
>Yes, for in-kernel use. It has no performance difference with userland
>tools compiled without memory debug. It has negative performance gain
>on tools compiled with memory debug.
>> Is it to reduce memory use or memory fragmentation?
>Yes, both. Kernel people don't like us to keep separate caches for hundred
>byte allocation every 5 seconds. it's a waist of kernel resources.
>> I know there has been discussion on and off concerning the use of caches,
>object sizes, the big union, etc., but please refresh me.
>Yes, there was a outside patch to replace kernel caching with ACPICA
>caching. Then I explained implementation of ACPICA caching, patch was
>dropped (good thing), but people suggested that we simplify ACPICA memory
>usage to just malloc and don't use fits-all scheme for objects.
>This is what my patch does -- it makes every object to only allocate it own
>size of memory.
>
>They also suggested dropping the object union, but this seems not practical
>as it is, because of huge number of casts between objects and common part
>(I've tried to do this first, but the patch became about 600k in size,
>containing mostly casts).
>It is still possible to remove _use_ of object union there it is has
>benefits, for example, if function is supposed to only receive mutex
>object, there is a little reason to feed it with union.
>>
>> As far as the operand objects, once the tables are loaded and the
>namespace is initialized, these are all dynamic with a lifetime of at
>> most the duration of an executing control method -- so I'm not clear as
>to what is to be gained by splitting a single-sized object into
>> a bunch of differently-sized objects. One would *think* that it would be
>more efficient to just allocate the single-sized objects
>> from a single fast cache.
>Malloc in all Unix/Linux implementations use the same-size object caches
>(slabs) for kernel allocation for two decades now. So, inside kernel we
>don't gain anything by re-implementing this, mostly because we don't care
>about CPU caches, NUMA memory locality, etc.
>There are several attempts to use slabs in malloc implementations for
>userspace libraries, but ACPICA is not that memory bound to require this.
>
>Regards,
>Alex.
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux IBM ACPI]     [Linux Power Management]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]     [Linux Resources]

  Powered by Linux