1. 01 Aug, 2010 1 commit
    • Julia Lawall's avatar
      net/rose: Use GFP_ATOMIC · e2e0c7c9
      Julia Lawall authored
      The other calls to kmalloc in the same function use GFP_ATOMIC, and indeed
      two locks are held within the body of the function.
      
      The semantic match that finds this problem is as follows:
      (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@ identifier f; @@
      
      *f(...,GFP_ATOMIC,...)
      ... when != spin_unlock(...)
          when != read_unlock(...)
          when != write_unlock(...)
          when != read_unlock_irq(...)
          when != write_unlock_irq(...)
          when != read_unlock_irqrestore(...)
          when != write_unlock_irqrestore(...)
          when != spin_unlock_irq(...)
          when != spin_unlock_irqrestore(...)
      *f(...,GFP_KERNEL,...)
      // </smpl>
      Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e2e0c7c9
  2. 31 Jul, 2010 15 commits
  3. 29 Jul, 2010 14 commits
  4. 28 Jul, 2010 10 commits