Displaying 1 result from an estimated 1 matches for "config_inline_spin_".
2011 Sep 01
3
HVM guests and pvlocks not working as expected
...hes pv_locks sites)
  ...
  rest_init (triggers kernel_init as a thread)
    kernel_init
      ...
      smp_prepare_cpus (calls xen_init_spinlocks through smp_ops hook)
To make things even more fun, there is the possibility that some spinlock
functions are forced to be inlined and others are not (CONFIG_INLINE_SPIN_*). In
our special case only two versions of spin_unlock were inlined. Put that
together into a pot with modules, shake well, and there is the fun. Basically on
load time, the non-inline calls remain pointing to the unmodified ticket
implementation (main kernel). But the unlock calls (which are inli...