4 * Copyright (C) 2003-2004 Sistina Software, Inc. All rights reserved.
5 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
7 * This file is part of LVM2.
9 * This copyrighted material is made available to anyone wishing to use,
10 * modify, copy, or redistribute it subject to the terms and conditions
11 * of the GNU Lesser General Public License v.2.1.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "toolcontext.h"
29 #include <sys/resource.h>
31 #ifndef DEVMAPPER_SUPPORT
33 void memlock_inc(void)
37 void memlock_dec(void)
45 void memlock_init(struct cmd_context
*cmd
)
50 #else /* DEVMAPPER_SUPPORT */
52 static size_t _size_stack
;
53 static size_t _size_malloc_tmp
;
54 static size_t _size_malloc
= 2000000;
56 static void *_malloc_mem
= NULL
;
57 static int _memlock_count
= 0;
58 static int _memlock_count_daemon
= 0;
60 static int _default_priority
;
62 static void _touch_memory(void *mem
, size_t size
)
64 size_t pagesize
= lvm_getpagesize();
66 void *end
= mem
+ size
- sizeof(long);
74 static void _allocate_memory(void)
76 void *stack_mem
, *temp_malloc_mem
;
78 if ((stack_mem
= alloca(_size_stack
)))
79 _touch_memory(stack_mem
, _size_stack
);
81 if ((temp_malloc_mem
= malloc(_size_malloc_tmp
)))
82 _touch_memory(temp_malloc_mem
, _size_malloc_tmp
);
84 if ((_malloc_mem
= malloc(_size_malloc
)))
85 _touch_memory(_malloc_mem
, _size_malloc
);
87 free(temp_malloc_mem
);
90 static void _release_memory(void)
95 /* Stop memory getting swapped out */
96 static void _lock_mem(void)
99 if (mlockall(MCL_CURRENT
| MCL_FUTURE
))
100 log_sys_error("mlockall", "");
102 log_very_verbose("Locking memory");
107 if (((_priority
= getpriority(PRIO_PROCESS
, 0)) == -1) && errno
)
108 log_sys_error("getpriority", "");
110 if (setpriority(PRIO_PROCESS
, 0, _default_priority
))
111 log_error("setpriority %d failed: %s",
112 _default_priority
, strerror(errno
));
115 static void _unlock_mem(void)
119 log_sys_error("munlockall", "");
121 log_very_verbose("Unlocking memory");
124 if (setpriority(PRIO_PROCESS
, 0, _priority
))
125 log_error("setpriority %u failed: %s", _priority
,
129 static void _lock_mem_if_needed(void) {
130 if ((_memlock_count
+ _memlock_count_daemon
) == 1)
134 static void _unlock_mem_if_possible(void) {
135 if ((_memlock_count
+ _memlock_count_daemon
) == 0)
139 void memlock_inc(void)
142 _lock_mem_if_needed();
143 log_debug("memlock_count inc to %d", _memlock_count
);
146 void memlock_dec(void)
149 log_error("Internal error: _memlock_count has dropped below 0.");
151 _unlock_mem_if_possible();
152 log_debug("memlock_count dec to %d", _memlock_count
);
156 * The memlock_*_daemon functions will force the mlockall() call that we need
157 * to stay in memory, but they will have no effect on device scans (unlike
158 * normal memlock_inc and memlock_dec). Memory is kept locked as long as either
159 * of memlock or memlock_daemon is in effect.
162 void memlock_inc_daemon(void)
164 ++_memlock_count_daemon
;
165 _lock_mem_if_needed();
166 log_debug("memlock_count_daemon inc to %d", _memlock_count_daemon
);
169 void memlock_dec_daemon(void)
171 if (!_memlock_count_daemon
)
172 log_error("Internal error: _memlock_count_daemon has dropped below 0.");
173 --_memlock_count_daemon
;
174 _unlock_mem_if_possible();
175 log_debug("memlock_count_daemon dec to %d", _memlock_count_daemon
);
179 * This disregards the daemon (dmeventd) locks, since we use memlock() to check
180 * whether it is safe to run a device scan, which would normally coincide with
181 * !memlock() -- but the daemon global memory lock breaks this assumption, so
182 * we do not take those into account here.
186 return _memlock_count
;
189 void memlock_init(struct cmd_context
*cmd
)
191 _size_stack
= find_config_tree_int(cmd
,
192 "activation/reserved_stack",
193 DEFAULT_RESERVED_STACK
) * 1024;
194 _size_malloc_tmp
= find_config_tree_int(cmd
,
195 "activation/reserved_memory",
196 DEFAULT_RESERVED_MEMORY
) * 1024;
197 _default_priority
= find_config_tree_int(cmd
,
198 "activation/process_priority",
199 DEFAULT_PROCESS_PRIORITY
);