Displaying 7 results from an estimated 7 matches for "map_free".
2006 Jun 08
1
Problem Compiling Dovecot-LDA
....o)(.text+0xa23): In function `sieve_script_load':
/home/tim/src/dovecot-lda/src/libsieve/script.c:435: undefined
reference to `map_refresh'
libsieve.a(script.o)(.text+0xaf0): In function `sieve_script_unload':
/home/tim/src/dovecot-lda/src/libsieve/script.c:462: undefined
reference to `map_free'
libsieve.a(sieve.o)(.text+0x1e6e): In function `verify_flag':
/home/tim/src/dovecot-lda/src/libsieve/sieve.y:951: undefined
reference to `imparse_isatom'
collect2: ld returned 1 exit status
make[2]: *** [sievec] Error 1
make[2]: Leaving directory `/home/tim/src/dovecot-lda/src/libsieve...
2018 Jul 31
0
[PATCH nbdkit 3/4] Add map filter.
...;get_size (nxdata);
+ if (size == -1)
+ return -1;
+ nbdkit_debug ("map: plugin size: %" PRIi64, size);
+
+ if (map_load_from_file (filename, size, &h->map) == -1)
+ return -1;
+
+ return 0;
+}
+
+static void
+map_close (void *handle)
+{
+ struct handle *h = handle;
+
+ map_free (&h->map);
+ free (h);
+}
+
+/* Get size. */
+static int64_t
+map_get_size (struct nbdkit_next_ops *next_ops, void *nxdata, void *handle)
+{
+ struct handle *h = handle;
+ int64_t r;
+
+ r = map_size (&h->map);
+ nbdkit_debug ("map: filter size: %" PRIi64, r);
+ return...
2006 Jun 16
2
Problem compile dovecot-sieve under Debian
...script.o)(.text+0xa23): In function `sieve_script_load':
/usr/src/dovecot-sieve/src/libsieve/script.c:435: undefined reference to
`map_refresh'
libsieve.a(script.o)(.text+0xaf0): In function `sieve_script_unload':
/usr/src/dovecot-sieve/src/libsieve/script.c:462: undefined reference to
`map_free'
libsieve.a(sieve.o)(.text+0x1e6e): In function `verify_flag':
/usr/src/dovecot-sieve/src/libsieve/sieve.y:951: undefined reference to
`imparse_isatom'
collect2: ld returned 1 exit status
make[3]: *** [sievec] Erreur 1
make[3]: Leaving directory `/usr/src/dovecot-sieve/src/libsieve'...
2006 Sep 29
0
[PATCH 2/6] xen: add per-node bucks to page allocator
...struct page_info *pg, unsigned int order)
{
unsigned long mask;
+ int node = phys_to_nid(page_to_maddr(pg));
ASSERT(zone < NR_ZONES);
ASSERT(order <= MAX_ORDER);
+ ASSERT(node >= 0);
+ ASSERT(node < num_online_nodes());
spin_lock(&heap_lock);
map_free(page_to_mfn(pg), 1 << order);
- avail[zone] += 1 << order;
+ avail[zone][node] += 1 << order;
/* Merge chunks as far as possible. */
while ( order < MAX_ORDER )
@@ -370,10 +424,13 @@ void free_heap_pages(
}
order++;
+
+ /...
2018 Jul 31
7
[PATCH nbdkit 0/4] Add truncate and map filters.
This patch series proposes two new filters.
* truncate: This can truncate, extend, round up or round down the size
of a plugin/device. A typical usage is to fix the qemu problem that
it can only handle devices which are a multiple of 512-bytes:
nbdkit --filter=truncate random size=500 round-up=512
This will serve a virtual device with size 512 bytes. Reading from
the last 12 bytes will
2006 Jun 15
3
Problem with Dovecot LDA / Postfix
Our setup is ok with Postfix / Dovecot.
I just need to add dovecot LDA.
I use the 1.0beta9
LDA Configuration:
protocol lda {
postmaster_address = postmaster@clm.net4all.ch
#hostname =
#mail_plugins =
#mail_plugin_dir = /usr/lib/dovecot/imap
#sendmail_path = /usr/lib/sendmail
auth_socket_path = /var/run/dovecot/auth-master
}
auth default-socket {
mechanisms = plain login
passdb
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier
to use, from an application development point of view.
Overview of patches:
1 Command line argument parsing support, from Xen.
2 Weak console handler function.
3 Build system tweaks for application directories.
4 Trailing whitespace cleanup. (because it is very messy)
Patch 4 is likely to be more controversial than