1. 19 5月, 2015 16 次提交
  2. 13 5月, 2015 3 次提交
  3. 12 5月, 2015 2 次提交
  4. 06 5月, 2015 4 次提交
  5. 05 5月, 2015 12 次提交
  6. 18 4月, 2015 1 次提交
  7. 17 4月, 2015 1 次提交
    • M
      cxgb4: drop __GFP_NOFAIL allocation · f72f116a
      Michal Hocko 提交于
      set_filter_wr is requesting __GFP_NOFAIL allocation although it can return
      ENOMEM without any problems obviously (t4_l2t_set_switching does that
      already).  So the non-failing requirement is too strong without any
      obvious reason.  Drop __GFP_NOFAIL and reorganize the code to have the
      failure paths easier.
      
      The same applies to _c4iw_write_mem_dma_aligned which uses __GFP_NOFAIL
      and then checks the return value and returns -ENOMEM on failure.  This
      doesn't make any sense what so ever.  Either the allocation cannot fail or
      it can.
      
      del_filter_wr seems to be safe as well because the filter entry is not
      marked as pending and the return value is propagated up the stack up to
      c4iw_destroy_listen.
      Signed-off-by: NMichal Hocko <mhocko@suse.cz>
      Cc: David Rientjes <rientjes@google.com>
      Cc: Johannes Weiner <hannes@cmpxchg.org>
      Cc: Dave Chinner <david@fromorbit.com>
      Cc: "Theodore Ts'o" <tytso@mit.edu>
      Cc: Mel Gorman <mgorman@suse.de>
      Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Hariprasad S <hariprasad@chelsio.com>
      Cc: Jan Kara <jack@suse.cz>
      Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f72f116a
  8. 16 4月, 2015 1 次提交
    • S
      IB/iser: Rewrite bounce buffer code path · ba943fb2
      Sagi Grimberg 提交于
      In some rare cases, IO operations may be not aligned to page
      boundaries. This prevents iser from performing fast memory
      registration. In order to overcome that iser uses a bounce
      buffer to carry the transaction. We basically allocate a buffer
      in the size of the transaction and perform a copy.
      
      The buffer allocation using kmalloc is too restrictive since it
      requires higher order (atomic) allocations for large transactions
      (which may result in memory exhaustion fairly fast for some workloads).
      We rewrite the bounce buffer code path to allocate scattered pages
      and perform a copy between the transaction sg and the bounce sg.
      Reported-by: NAlex Lyakas <alex@zadarastorage.com>
      Signed-off-by: NSagi Grimberg <sagig@mellanox.com>
      Signed-off-by: NDoug Ledford <dledford@redhat.com>
      ba943fb2