Skip to content

Commit

Permalink
Version 6.2.6.14
Browse files Browse the repository at this point in the history
- Fixed stack frame warnings when building with the debug kernel.
  • Loading branch information
corwin committed Feb 11, 2022
1 parent 1ea1bde commit afe3b1e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions kvdo.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%define spec_release 1
%define kmod_name kvdo
%define kmod_driver_version 6.2.6.3
%define kmod_driver_version 6.2.6.14
%define kmod_rpm_release %{spec_release}
%define kmod_kernel_version 3.10.0-693.el7

Expand Down Expand Up @@ -96,5 +96,5 @@ rm -rf $RPM_BUILD_ROOT
%{_usr}/src/%{kmod_name}-%{version}

%changelog
* Wed Nov 03 2021 - Red Hat VDO Team <[email protected]> - 6.2.6.3-1
- Fixed a bug which prevented the resumption of a suspended read-only vdo.
* Thu Feb 10 2022 - Red Hat VDO Team <[email protected]> - 6.2.6.14-1
- Fixed stack frame warnings when building with the debug kernel.
14 changes: 7 additions & 7 deletions uds/Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
UDS_VERSION = 8.0.4.1
UDS_VERSION = 8.0.4.2

SOURCES = $(notdir $(wildcard $(src)/*.c)) murmur/MurmurHash3.c
SOURCES += $(addprefix util/,$(notdir $(wildcard $(src)/util/*.c)))
OBJECTS = $(SOURCES:%.c=%.o)
INCLUDES = -I$(src)

EXTRA_CFLAGS = -std=gnu99 \
-fno-builtin-memset \
-Werror \
-Wframe-larger-than=400 \
-Wno-declaration-after-statement \
-DUDS_VERSION=\"$(UDS_VERSION)\" \
EXTRA_CFLAGS = -std=gnu99 \
-fno-builtin-memset \
-Werror \
$(if $(CONFIG_KASAN),,-Wframe-larger-than=400) \
-Wno-declaration-after-statement \
-DUDS_VERSION=\"$(UDS_VERSION)\" \
$(INCLUDES)

CFLAGS_REMOVE_deltaIndex.o = -std=gnu99
Expand Down
4 changes: 2 additions & 2 deletions vdo/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VDO_VERSION = 6.2.6.3
VDO_VERSION = 6.2.6.14

VDO_VERSION_MAJOR = $(word 1,$(subst ., ,$(VDO_VERSION)))
VDO_VERSION_MINOR = $(word 2,$(subst ., ,$(VDO_VERSION)))
Expand All @@ -12,7 +12,7 @@ INCLUDES = -I$(src)/base -I$(src)/kernel -I$(src)/../uds
EXTRA_CFLAGS = -std=gnu99 \
-fno-builtin-memset \
-Werror \
-Wframe-larger-than=400 \
$(if $(CONFIG_KASAN),,-Wframe-larger-than=400) \
-Wno-declaration-after-statement \
-DVDO_VERSION_MAJOR=$(VDO_VERSION_MAJOR) \
-DVDO_VERSION_MINOR=$(VDO_VERSION_MINOR) \
Expand Down
2 changes: 1 addition & 1 deletion vdo/kernel/workQueueHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* $Id: //eng/vdo-releases/aluminum/src/c++/vdo/kernel/workQueueHandle.h#1 $
* $Id: //eng/vdo-releases/aluminum/src/c++/vdo/kernel/workQueueHandle.h#2 $
*/

#ifndef WORK_QUEUE_HANDLE_H
Expand Down

0 comments on commit afe3b1e

Please sign in to comment.