mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 23:23:55 +08:00
drbd: send_bitmap_rle_or_plain(): Error handling cleanup
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
e1c1b0fc8f
commit
a982dd579c
@ -1123,8 +1123,7 @@ send_bitmap_rle_or_plain(struct drbd_conf *mdev,
|
||||
{
|
||||
struct p_compressed_bm *p = (void*)h;
|
||||
unsigned long num_words;
|
||||
int len;
|
||||
int ok;
|
||||
int len, err;
|
||||
|
||||
len = fill_bitmap_rle_bits(mdev, p, c);
|
||||
|
||||
@ -1133,7 +1132,8 @@ send_bitmap_rle_or_plain(struct drbd_conf *mdev,
|
||||
|
||||
if (len) {
|
||||
DCBP_set_code(p, RLE_VLI_Bits);
|
||||
ok = !_drbd_send_cmd(mdev, mdev->tconn->data.socket, P_COMPRESSED_BITMAP, h,
|
||||
err = _drbd_send_cmd(mdev, mdev->tconn->data.socket,
|
||||
P_COMPRESSED_BITMAP, h,
|
||||
sizeof(*p) + len, 0);
|
||||
|
||||
c->packets[0]++;
|
||||
@ -1148,7 +1148,7 @@ send_bitmap_rle_or_plain(struct drbd_conf *mdev,
|
||||
len = num_words * sizeof(long);
|
||||
if (len)
|
||||
drbd_bm_get_lel(mdev, c->word_offset, num_words, (unsigned long*)h->payload);
|
||||
ok = !_drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
|
||||
err = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
|
||||
h, sizeof(struct p_header80) + len, 0);
|
||||
c->word_offset += num_words;
|
||||
c->bit_offset = c->word_offset * BITS_PER_LONG;
|
||||
@ -1159,7 +1159,7 @@ send_bitmap_rle_or_plain(struct drbd_conf *mdev,
|
||||
if (c->bit_offset > c->bm_bits)
|
||||
c->bit_offset = c->bm_bits;
|
||||
}
|
||||
if (ok) {
|
||||
if (!err) {
|
||||
if (len == 0) {
|
||||
INFO_bm_xfer_stats(mdev, "send", c);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user