blob: 07bb20e9e0638d2fcecc47dc950df347acf4e1fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Eblit with information/warnings for IP27 (Origin 200/2000/Onyx2) users.
#
# If you need to add whitespace for formatting in 'einfo', 'ewarn', or 'eerror', use
# \040 for a space instead of the standard space. These functions will strip
# redundant white space.
show_ip27_info() {
echo -e ""
ewarn "Heavy disk I/O on recent kernels may randomly trigger a VM_BUG_ON_PAGE()"
ewarn "in move_freepages() in mm/page_alloc.c. The exact trigger cause is"
ewarn "unknown at this time. Please report any oops messages from this"
ewarn "bug to bugs.gentoo.org (assign to mips@gentoo.org)"
echo -e ""
}
|