1. 03 Sep, 2008 37 commits
  2. 30 Aug, 2008 1 commit
  3. 29 Aug, 2008 2 commits
    • David S. Miller's avatar
      net: Unbreak userspace usage of linux/mroute.h · 7c19a3d2
      David S. Miller authored
      Nothing in linux/pim.h should be exported to userspace.
      
      This should fix the XORP build failure reported by
      Jose Calhariz, the debain package maintainer.
      
      Nothing originally in linux/mroute.h was exported to userspace
      ever, but some of this stuff started to be when it was moved into
      this new linux/pim.h, and that was wrong.  If we didn't provide these
      definitions for 10 years we can reasonably expect that applications
      defined this stuff locally or used GLIBC headers providing the
      protocol definitions.  And as such the only result of this can
      be conflict and userland build breakage.
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      7c19a3d2
    • Jarek Poplawski's avatar
      pkt_sched: Fix locking of qdisc_root with qdisc_root_sleeping_lock() · 102396ae
      Jarek Poplawski authored
      Use qdisc_root_sleeping_lock() instead of qdisc_root_lock() where
      appropriate. The only difference is while dev is deactivated, when
      currently we can use a sleeping qdisc with the lock of noop_qdisc.
      This shouldn't be dangerous since after deactivation root lock could
      be used only by gen_estimator code, but looks wrong anyway.
      Signed-off-by: default avatarJarek Poplawski <jarkao2@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      102396ae