Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client

Pull Ceph fix from Sage Weil:
"This sets the stable pages flag on the RBD block device when we have
CRCs enabled. (This is necessary since the default assumption for
block devices changed in 3.9)"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client:
rbd: require stable pages if message data CRCs are enabled

+3
+3
drivers/block/rbd.c
··· 3780 3780 blk_queue_max_discard_sectors(q, segment_size / SECTOR_SIZE); 3781 3781 q->limits.discard_zeroes_data = 1; 3782 3782 3783 + if (!ceph_test_opt(rbd_dev->rbd_client->client, NOCRC)) 3784 + q->backing_dev_info.capabilities |= BDI_CAP_STABLE_WRITES; 3785 + 3783 3786 disk->queue = q; 3784 3787 3785 3788 q->queuedata = rbd_dev;