]> git.baikalelectronics.ru Git - kernel.git/commit
libceph: use memalloc flags for net IO
authorMike Christie <michaelc@cs.wisc.edu>
Thu, 16 Oct 2014 06:50:19 +0000 (01:50 -0500)
committerIlya Dryomov <idryomov@redhat.com>
Thu, 30 Oct 2014 10:11:50 +0000 (13:11 +0300)
commit37cbcbc58d96e168d0bf7c0e5996bc60c001e10b
treece7d44eae139ca6b5c03026e8b471727f0df1fc1
parentac53c89f5929b111c30c5f3480f88809fcad789f
libceph: use memalloc flags for net IO

This patch has ceph's lib code use the memalloc flags.

If the VM layer needs to write data out to free up memory to handle new
allocation requests, the block layer must be able to make forward progress.
To handle that requirement we use structs like mempools to reserve memory for
objects like bios and requests.

The problem is when we send/receive block layer requests over the network
layer, net skb allocations can fail and the system can lock up.
To solve this, the memalloc related flags were added. NBD, iSCSI
and NFS uses these flags to tell the network/vm layer that it should
use memory reserves to fullfill allcation requests for structs like
skbs.

I am running ceph in a bunch of VMs in my laptop, so this patch was
not tested very harshly.

Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Reviewed-by: Ilya Dryomov <idryomov@redhat.com>
net/ceph/messenger.c