1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

memlock: ignore more libraries

Extend the list of ignored libraries. Since we do not
use those libraries during suspend, skip their locking.
This commit is contained in:
Zdenek Kabelac 2014-04-10 10:52:44 +02:00
parent 84ff3ae703
commit bd3e44643d
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.107 - Version 2.02.107 -
================================== ==================================
Skip more libraries to be mlocked in memory.
Remove LOCKED flag for pvmove replaced with error target. Remove LOCKED flag for pvmove replaced with error target.
Return invalid command when specifying negative polling interval. Return invalid command when specifying negative polling interval.

View File

@ -92,9 +92,15 @@ static const char * const _blacklist_maps[] = {
"locale/locale-archive", "locale/locale-archive",
"/LC_MESSAGES/", "/LC_MESSAGES/",
"gconv/gconv-modules.cache", "gconv/gconv-modules.cache",
"/libreadline.so.", /* not using readline during mlock */ "/libblkid.so.", /* not using lzma during mlock (selinux) */
"/liblzma.so.", /* not using lzma during mlock (selinux) */
"/libncurses.so.", /* not using ncurses during mlock */ "/libncurses.so.", /* not using ncurses during mlock */
"/libpcre.so.", /* not using pcre during mlock (selinux) */
"/libreadline.so.", /* not using readline during mlock */
"/libselinux.so.", /* not using selinux during mlock */
"/libsepol.so.", /* not using sepol during mlock */
"/libtinfo.so.", /* not using tinfo during mlock */ "/libtinfo.so.", /* not using tinfo during mlock */
"/libuuid.so.", /* not using uuid during mlock (blkid) */
"/libdl-", /* not using dlopen,dlsym during mlock */ "/libdl-", /* not using dlopen,dlsym during mlock */
/* "/libdevmapper-event.so" */ /* "/libdevmapper-event.so" */
}; };