diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2010-10-05 05:19:39 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2010-10-14 12:38:42 -0400 |
commit | 00b425377d60e67e86721d4ce6d7cbf131a5d0fd (patch) | |
tree | 7e815cbdc90ebd1c801157f707e1e278a739ed68 /drivers/block/drbd/drbd_int.h | |
parent | f65363cfa05fe60874030461a0eeb84b7e60cba4 (diff) |
drbd: Allow larger values for c-fill-target.
Connections through a compressing proxy might have more bits
on the fly. 500MByte instead of 50MByte
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index ff7fffa00dac..1680939de101 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h | |||
@@ -348,7 +348,7 @@ struct p_header80 { | |||
348 | struct p_header95 { | 348 | struct p_header95 { |
349 | u16 magic; /* use DRBD_MAGIC_BIG here */ | 349 | u16 magic; /* use DRBD_MAGIC_BIG here */ |
350 | u16 command; | 350 | u16 command; |
351 | u32 length; | 351 | u32 length; /* Use only 24 bits of that. Ignore the highest 8 bit. */ |
352 | u8 payload[0]; | 352 | u8 payload[0]; |
353 | } __packed; | 353 | } __packed; |
354 | 354 | ||