Skip to content

Commit

Permalink
feat: Preparation for the release 2.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzyjamroz committed Nov 18, 2024
1 parent ccf3b93 commit 348eac4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure/CONFIG_MRFIOC2_VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MRFIOC2_MAJOR_VERSION = 2
MRFIOC2_MINOR_VERSION = 7
MRFIOC2_MAINTENANCE_VERSION = 0
MRFIOC2_MAINTENANCE_VERSION = 1
2 changes: 1 addition & 1 deletion documentation/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion mrmShared/linux/uio_mrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 348eac4

Please sign in to comment.