Re: [RFC PATCH 1/4] powerpc 2.6.16-rt17: to build on powerpc w/ RT




Well, I've been wanting to look at your stuff and possibly do the
conversion for some time, provided we don't lose performances ... Our
current implementation is very optimized to avoid even memory barriers
in most cases and I doubt we'll be able to be as fine tuned using your
generic code, thus it's a tradeoff decision that we have to do. But
then, I need to look into the details before doing any final
statement :)

Ok, although do let me know if you see places where the generic code
could use any of the optimizations used in powerpc.

Difficult... but maybe. One of the main idea is that the 3 values used
for "calibration" (pre-mult offset, multiplier and post-mult offset) are
in a structure. There is an array of 2 of these and a pointer to the
"current" one. When changing those values, we update the "other" one,
wmb, then flip the pointer. The readers can then mostly be barrier-less
since there is a natural data dependency on the pointer.

Ben.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



Relevant Pages

  • Re: Function prologs emitted by VC++ compiler
    ... see ebp being used as a frame pointer reliably. ... there is no hard guarantee that ebp will be used as a frame ... InterlockedIncrementwhere the prolog is optimized away and the ... When do compilers decide to do such prolog optimizations. ...
    (microsoft.public.win32.programmer.kernel)
  • Re: Share .cpp and .h along projects
    ... larger object can be controlled in a threadsafe manner using a volatile ... pointer and memory barriers. ... don't need to know about in order to use synchronization objects. ...
    (microsoft.public.vc.language)
  • Re: Pointer equality and dereferencing
    ... result that is defined for the right pointer. ... that the programmer needs to worry about. ... some optimizations, but that's a QoI detail. ...
    (comp.std.c)
  • Re: passing class to a function in c++ - performance question
    ... In practice, usually, passing by pointer vs by reference has the same ... optimizations with references vs optimizations with pointers. ... This also applies to the "register" keyword. ...
    (comp.lang.cpp)