1. 10 Feb, 2011 6 commits
  2. 09 Feb, 2011 13 commits
  3. 08 Feb, 2011 18 commits
  4. 07 Feb, 2011 3 commits
    • Sven Eckelmann's avatar
      batman-adv: Linearize fragment packets before merge · 531c9da8
      Sven Eckelmann authored
      We access the data inside the skbs of two fragments directly using memmove
      during the merge. The data of the skb could span over multiple skb pages. An
      direct access without knowledge about the pages would lead to an invalid memory
      access.
      Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
      [lindner_marek@yahoo.de: Move return from function to the end]
      Signed-off-by: default avatarMarek Lindner <lindner_marek@yahoo.de>
      531c9da8
    • Linus Torvalds's avatar
      Merge master.kernel.org:/home/rmk/linux-2.6-arm · 65d9055e
      Linus Torvalds authored
      * master.kernel.org:/home/rmk/linux-2.6-arm:
        ALSA: AACI: allow writes to MAINCR to take effect
        ARM: Update mach-types
        ARM: 6652/1: ep93xx: correct the end address of the AC97 memory resource
        ARM: mxs/imx28: remove now unused clock lookup "fec.0"
        ARM: mxs: fix clock base address missing
        ARM: mxs: acknowledge gpio irq
        ARM: mach-imx/mach-mx25_3ds: Fix section type
        ARM: imx: Add VPR200 and MX51_3DS entries to uncompress.h
        ARM i.MX23: use correct register for setting the rate
        ARM i.MX23/28: remove secondary field from struct clk. It's unused
        ARM i.MX28: use correct register for setting the rate
        ARM i.MX28: fix bit operation
      65d9055e
    • Chris Mason's avatar
      md_make_request: don't touch the bio after calling make_request · e91ece55
      Chris Mason authored
      md_make_request was calling bio_sectors() for part_stat_add
      after it was calling the make_request function.  This is
      bad because the make_request function can free the bio and
      because the bi_size field can change around.
      
      The fix here was suggested by Jens Axboe.  It saves the
      sector count before the make_request call.  I hit this
      with CONFIG_DEBUG_PAGEALLOC turned on while trying to break
      his pretty fusionio card.
      
      Cc: <stable@kernel.org>
      Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
      Signed-off-by: default avatarNeilBrown <neilb@suse.de>
      e91ece55