From 348eac4f18d0048a972976f3574b48ab24c9fafa Mon Sep 17 00:00:00 2001 From: Jerzy Jamroz Date: Mon, 18 Nov 2024 08:41:22 +0100 Subject: [PATCH] feat: Preparation for the release 2.7.1. --- configure/CONFIG_MRFIOC2_VERSION | 2 +- documentation/Doxyfile | 2 +- mrmShared/linux/uio_mrf.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure/CONFIG_MRFIOC2_VERSION b/configure/CONFIG_MRFIOC2_VERSION index c7c73258..6d458fed 100644 --- a/configure/CONFIG_MRFIOC2_VERSION +++ b/configure/CONFIG_MRFIOC2_VERSION @@ -1,3 +1,3 @@ MRFIOC2_MAJOR_VERSION = 2 MRFIOC2_MINOR_VERSION = 7 -MRFIOC2_MAINTENANCE_VERSION = 0 +MRFIOC2_MAINTENANCE_VERSION = 1 diff --git a/documentation/Doxyfile b/documentation/Doxyfile index e26d3442..6d23b954 100644 --- a/documentation/Doxyfile +++ b/documentation/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = mrfioc2 # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.7.0 +PROJECT_NUMBER = 2.7.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/mrmShared/linux/uio_mrf.c b/mrmShared/linux/uio_mrf.c index b0a525b6..71de4f8e 100644 --- a/mrmShared/linux/uio_mrf.c +++ b/mrmShared/linux/uio_mrf.c @@ -125,7 +125,7 @@ int mrf_mmap_physical(struct uio_info *info, struct vm_area_struct *vma) #if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0) vm_flags_set(vma, VM_IO | VM_RESERVED); -#elif defined(RHEL_RELEASE_CODE) && (RHEL_RELEASE_CODE >= 2310) +#elif defined(RHEL_RELEASE_CODE) && (RHEL_RELEASE_CODE >= 0x906) vm_flags_set(vma, VM_IO | VM_RESERVED); #else vma->vm_flags |= VM_IO | VM_RESERVED;