Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / gpl2 / lvm2 / dist / lib / mm / memlock.c
blob90ef82dec10d6d71f238332bcd67780871067196
1 /* $NetBSD$ */
3 /*
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
18 #include "lib.h"
19 #include "memlock.h"
20 #include "defaults.h"
21 #include "config.h"
22 #include "toolcontext.h"
24 #include <limits.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <sys/mman.h>
28 #include <sys/time.h>
29 #include <sys/resource.h>
31 #ifndef DEVMAPPER_SUPPORT
33 void memlock_inc(void)
35 return;
37 void memlock_dec(void)
39 return;
41 int memlock(void)
43 return 0;
45 void memlock_init(struct cmd_context *cmd)
47 return;
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;
59 static int _priority;
60 static int _default_priority;
62 static void _touch_memory(void *mem, size_t size)
64 size_t pagesize = lvm_getpagesize();
65 void *pos = mem;
66 void *end = mem + size - sizeof(long);
68 while (pos < end) {
69 *(long *) pos = 1;
70 pos += pagesize;
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)
92 free(_malloc_mem);
95 /* Stop memory getting swapped out */
96 static void _lock_mem(void)
98 #ifdef MCL_CURRENT
99 if (mlockall(MCL_CURRENT | MCL_FUTURE))
100 log_sys_error("mlockall", "");
101 else
102 log_very_verbose("Locking memory");
103 #endif
104 _allocate_memory();
106 errno = 0;
107 if (((_priority = getpriority(PRIO_PROCESS, 0)) == -1) && errno)
108 log_sys_error("getpriority", "");
109 else
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)
117 #ifdef MCL_CURRENT
118 if (munlockall())
119 log_sys_error("munlockall", "");
120 else
121 log_very_verbose("Unlocking memory");
122 #endif
123 _release_memory();
124 if (setpriority(PRIO_PROCESS, 0, _priority))
125 log_error("setpriority %u failed: %s", _priority,
126 strerror(errno));
129 static void _lock_mem_if_needed(void) {
130 if ((_memlock_count + _memlock_count_daemon) == 1)
131 _lock_mem();
134 static void _unlock_mem_if_possible(void) {
135 if ((_memlock_count + _memlock_count_daemon) == 0)
136 _unlock_mem();
139 void memlock_inc(void)
141 ++_memlock_count;
142 _lock_mem_if_needed();
143 log_debug("memlock_count inc to %d", _memlock_count);
146 void memlock_dec(void)
148 if (!_memlock_count)
149 log_error("Internal error: _memlock_count has dropped below 0.");
150 --_memlock_count;
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.
184 int memlock(void)
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);
202 #endif