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:
parent
84ff3ae703
commit
bd3e44643d
@ -1,5 +1,6 @@
|
||||
Version 2.02.107 -
|
||||
==================================
|
||||
Skip more libraries to be mlocked in memory.
|
||||
Remove LOCKED flag for pvmove replaced with error target.
|
||||
Return invalid command when specifying negative polling interval.
|
||||
|
||||
|
@ -92,9 +92,15 @@ static const char * const _blacklist_maps[] = {
|
||||
"locale/locale-archive",
|
||||
"/LC_MESSAGES/",
|
||||
"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 */
|
||||
"/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 */
|
||||
"/libuuid.so.", /* not using uuid during mlock (blkid) */
|
||||
"/libdl-", /* not using dlopen,dlsym during mlock */
|
||||
/* "/libdevmapper-event.so" */
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user