diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-05-06 15:28:32 +0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2014-07-10 20:35:23 +0400 |
commit | bf0d6e4a1138e71cafdbbb99cde430eee50c4ff1 (patch) | |
tree | 42be197cc003ef248360e85581d974463d4a45cb /include/linux/drbd.h | |
parent | 1e39152fea2dccd1af6479aa1a036201886f0743 (diff) | |
download | linux-bf0d6e4a1138e71cafdbbb99cde430eee50c4ff1.tar.xz |
drbd: silence underflow warning in read_in_block()
My static checker warns that "data_size" could be negative and underflow
the limit check. The code looks suspicious but I don't know if it is a
real bug.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'include/linux/drbd.h')
-rw-r--r-- | include/linux/drbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/drbd.h b/include/linux/drbd.h index 20ec8903b1e4..debb70d40547 100644 --- a/include/linux/drbd.h +++ b/include/linux/drbd.h @@ -52,7 +52,7 @@ #endif extern const char *drbd_buildtag(void); -#define REL_VERSION "8.4.3" +#define REL_VERSION "8.4.5" #define API_VERSION 1 #define PRO_VERSION_MIN 86 #define PRO_VERSION_MAX 101 |