svn commit: r241889 - in user/andre/tcp_workqueue/sys: arm/arm cddl/compat/opensolaris/kern cddl/contrib/opensolaris/uts/common/dtrace cddl/contrib/opensolaris/uts/common/fs/zfs ddb dev/acpica dev/...

Attilio Rao attilio at freebsd.org
Wed Oct 24 15:28:51 UTC 2012


On Wed, Oct 24, 2012 at 4:24 PM, Attilio Rao <attilio at freebsd.org> wrote:
> On Wed, Oct 24, 2012 at 4:09 PM, Attilio Rao <attilio at freebsd.org> wrote:
>> On Wed, Oct 24, 2012 at 3:45 PM, John Baldwin <jhb at freebsd.org> wrote:
>>> On Wednesday, October 24, 2012 10:34:34 am Attilio Rao wrote:
>>>> On Wed, Oct 24, 2012 at 3:05 PM, John Baldwin <jhb at freebsd.org> wrote:
>>>> > On Tuesday, October 23, 2012 7:20:04 pm Andre Oppermann wrote:
>>>> >> On 24.10.2012 00:15, mdf at FreeBSD.org wrote:
>>>> >> > On Tue, Oct 23, 2012 at 7:41 AM, Andre Oppermann <andre at freebsd.org>
>>> wrote:
>>>> >> >> Struct mtx and MTX_SYSINIT always occur as pair next to each other.
>>>> >> >
>>>> >> > That doesn't matter.  Language basics like variable definitions should
>>>> >> > not be obscured by macros.  It either takes longer to figure out what
>>>> >> > a variable is (because one needs to look up the definition of the
>>>> >> > macro) or makes it almost impossible (because now e.g. cscope doesn't
>>>> >> > know this is a variable definition.
>>>> >>
>>>> >> Sigh, cscope doesn't expand macros?
>>>> >>
>>>> >> Is there a way to do the cache line alignment in a sane way without
>>>> >> littering __aligned(CACHE_LINE_SIZE) all over the place?
>>>> >
>>>> > I was hoping to do something with an anonymous union or some such like:
>>>> >
>>>> > union mtx_aligned {
>>>> >         struct mtx;
>>>> >         char[roundup2(sizeof(struct mtx), CACHE_LINE_SIZE)];
>>>> > }
>>>> >
>>>> > I don't know if there is a useful way to define an 'aligned mutex' type
>>>> > that will transparently map to a 'struct mtx', e.g.:
>>>> >
>>>> > typedef struct mtx __aligned(CACHE_LINE_SIZE) aligned_mtx_t;
>>>>
>>>> Unfortunately that doesn't work as I've verified with alc@ few months ago.
>>>> The __aligned() attribute only works with structures definition, not
>>>> objects declaration.
>>>
>>> Are you saying that the typedef doesn't (I expect it doesn't), or that this
>>> doesn't:
>>>
>>> struct mtx foo __aligned(CACHE_LINE_SIZE);
>>
>> I meant to say that such notation won't address the padding issue
>> which is as import as the alignment. Infact, for sensitive locks,
>> having just an aligned object is not really useful if the cacheline
>> gets shared.
>> In the end you will need to use explicit padding or use __aligned in
>> the struct definition, which cannot be used as a general pattern.
>
> The quickest way I see this can be made general is to have a specific
> struct defined in sys/_mutex.h like that
>
> struct mtx_unshare {
>        struct mtx lock;
>        char _pad[CACHE_LINE_SIZE - sizeof(struct mtx)];
> } __aligned(CACHE_LINE_SIZE);

This can be however be dangerous for the KBI because I'm not sure we
assume the same CACHE_LINE_SIZE for every family processor within the
same architectures. I'm sure x86 supports at least 2 different
cacheline sizes, even if I admit I cannot recall (and cannot check
right now) if we actually differentiate them in the end. However, if
we want to support such mechanism and changing CACHE_LINE_SIZE, likely
struct mtx_unshare cannot be used proficiently in modules (but that is
however true with current handworking too, so it is not any worse than
what we can get today as well).

Attilio


-- 
Peace can only be achieved by understanding - A. Einstein


More information about the svn-src-user mailing list