mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
drbd: null dereference bug
epoch is always NULL here. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
This commit is contained in:
parent
98ec286e01
commit
d3db7b485a
@ -1224,7 +1224,7 @@ static int receive_Barrier(struct drbd_conf *mdev, struct p_header *h)
|
|||||||
epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
|
epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
|
||||||
if (!epoch) {
|
if (!epoch) {
|
||||||
dev_warn(DEV, "Allocation of an epoch failed, slowing down\n");
|
dev_warn(DEV, "Allocation of an epoch failed, slowing down\n");
|
||||||
issue_flush = !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags);
|
issue_flush = !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags);
|
||||||
drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
|
drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
|
||||||
if (issue_flush) {
|
if (issue_flush) {
|
||||||
rv = drbd_flush_after_epoch(mdev, mdev->current_epoch);
|
rv = drbd_flush_after_epoch(mdev, mdev->current_epoch);
|
||||||
|
Loading…
Reference in New Issue
Block a user