diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2010-08-20 08:35:10 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2010-10-14 12:38:24 -0400 |
commit | 02918be2273a6b086292e0d85b740336eda46e36 (patch) | |
tree | 2ec58d863e30be994bfe6ae6feb3ab888fb5c9f0 /drivers/block/drbd/drbd_int.h | |
parent | 0b70a13dac014ec9274640b9e945bde493ba365e (diff) |
drbd: receiving of big packets, for payloads between 64kByte and 4GByte
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'drivers/block/drbd/drbd_int.h')
-rw-r--r-- | drivers/block/drbd/drbd_int.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index 3f10efc2ac14..db7e65531afa 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h | |||
@@ -626,7 +626,7 @@ DCBP_set_pad_bits(struct p_compressed_bm *p, int n) | |||
626 | #endif | 626 | #endif |
627 | 627 | ||
628 | union p_polymorph { | 628 | union p_polymorph { |
629 | struct p_header80 header; | 629 | union p_header header; |
630 | struct p_handshake handshake; | 630 | struct p_handshake handshake; |
631 | struct p_data data; | 631 | struct p_data data; |
632 | struct p_block_ack block_ack; | 632 | struct p_block_ack block_ack; |
@@ -641,6 +641,8 @@ union p_polymorph { | |||
641 | struct p_req_state req_state; | 641 | struct p_req_state req_state; |
642 | struct p_req_state_reply req_state_reply; | 642 | struct p_req_state_reply req_state_reply; |
643 | struct p_block_req block_req; | 643 | struct p_block_req block_req; |
644 | struct p_delay_probe93 delay_probe93; | ||
645 | struct p_rs_uuid rs_uuid; | ||
644 | } __packed; | 646 | } __packed; |
645 | 647 | ||
646 | /**********************************************************************/ | 648 | /**********************************************************************/ |