Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bb8dcef05 | |||
| ceb55d53b1 | |||
| 002f36c7f5 |
@ -7,7 +7,7 @@ endif (NOT CMAKE_BUILD_TYPE)
|
|||||||
enable_language(C ASM)
|
enable_language(C ASM)
|
||||||
|
|
||||||
project(mckernel C ASM)
|
project(mckernel C ASM)
|
||||||
set(MCKERNEL_VERSION "1.7.9")
|
set(MCKERNEL_VERSION "1.7.10")
|
||||||
|
|
||||||
# See "Fedora Packaging Guidelines -- Versioning"
|
# See "Fedora Packaging Guidelines -- Versioning"
|
||||||
set(MCKERNEL_RELEASE "")
|
set(MCKERNEL_RELEASE "")
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
=============================================
|
||||||
|
Version 1.7.10 (Mar 18, 2021)
|
||||||
|
=============================================
|
||||||
|
|
||||||
|
----------------------
|
||||||
|
IHK major updates
|
||||||
|
----------------------
|
||||||
|
N/A
|
||||||
|
|
||||||
|
------------------------
|
||||||
|
IHK major bug fixes
|
||||||
|
------------------------
|
||||||
|
#. __ihk_device_detect_hungup: detect hungup via device-ioctl
|
||||||
|
|
||||||
|
----------------------
|
||||||
|
McKernel major updates
|
||||||
|
----------------------
|
||||||
|
N/A
|
||||||
|
|
||||||
|
------------------------
|
||||||
|
McKernel major bug fixes
|
||||||
|
------------------------
|
||||||
|
N/A
|
||||||
|
|
||||||
=============================================
|
=============================================
|
||||||
Version 1.7.9 (Mar 17, 2021)
|
Version 1.7.9 (Mar 17, 2021)
|
||||||
=============================================
|
=============================================
|
||||||
|
|||||||
@ -242,3 +242,5 @@ Limitations
|
|||||||
#. procfs entry creation done by Linux work queue could starve when
|
#. procfs entry creation done by Linux work queue could starve when
|
||||||
Linux CPUs are flooded with system call offloads. LTP-2019
|
Linux CPUs are flooded with system call offloads. LTP-2019
|
||||||
sendmsg02 causes this issue.
|
sendmsg02 causes this issue.
|
||||||
|
|
||||||
|
#. Linux kernel dump file doesn't include the memory allocated to McKernel. This is because of the issues in the implementation of the panic notifier handler.
|
||||||
|
|||||||
2
ihk
2
ihk
Submodule ihk updated: 8b92b9d7f4...5bc0394886
@ -119,7 +119,7 @@ if [ "${pid}" != "" ]; then
|
|||||||
${SUDO} kill -9 ${pid} > /dev/null 2> /dev/null
|
${SUDO} kill -9 ${pid} > /dev/null 2> /dev/null
|
||||||
fi
|
fi
|
||||||
if [ "${redirect_kmsg}" != "0" -o "${mon_interval}" != "-1" ]; then
|
if [ "${redirect_kmsg}" != "0" -o "${mon_interval}" != "-1" ]; then
|
||||||
${SBINDIR}/ihkmond -f ${facility} -k ${redirect_kmsg} -i ${mon_interval}
|
${SUDO} ${SBINDIR}/ihkmond -f ${facility} -k ${redirect_kmsg} -i ${mon_interval}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
disable_irqbalance_mck() {
|
disable_irqbalance_mck() {
|
||||||
|
|||||||
Reference in New Issue
Block a user