search for: copy_type

Displaying 5 results from an estimated 5 matches for "copy_type".

Did you mean: cap_type
2013 Aug 01
1
Antispam folder names
Is there anywhere a collection of folder names for the antispam_trash and antispam_spam configuration? Our problem is that in academia, you have a vast amount of different clients, and some, like Microsoft, use language-specific folder names *on the server*. So we're now collecting folder names to better handle the rare cases. Two more problems: 1. We needed to fix UTF-8 handling in the
2014 Aug 17
3
antispam plugin crash
...y(asms->box_class, asmb->box_class) At that point in time asmb is set to 0x0, causing the process to crash with SIGSEGV. Regards, Thomas GDB output: Program received signal SIGSEGV, Segmentation fault. antispam_copy (ctx=0x14ed9f0, mail=0x14c6cc0) at mailbox.c:107 107 enum mailbox_copy_type copy_type = (gdb) bt #0 antispam_copy (ctx=0x14ed9f0, mail=0x14c6cc0) at mailbox.c:107 #1 0x00007fdadb627fcd in mailbox_copy () from /usr/lib64/dovecot/libdovecot-storage.so.0 #2 0x00007fdada6cdba0 in act_store_execute () from /usr/lib64/dovecot/libdovecot-sieve.so.0 #3 0x00007fdada6c59d9 in si...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...re. Better to just pass in __u64 and have userspace cast pointer to that type, IMO. > + }; > +} __attribute__ ((packed)); Packed structures generate terrible code on some architectures. Can you just pad structures to multiples of 64 bit, or to full union size, instead? > + > +enum copy_type { > + COPY_KERNEL, > + COPY_USER, > + COPY_NOCOPY, > +}; > + > +#define DEFAULT_WIDTH 800 > +#define DEFAULT_HEIGHT 600 > +#define DEFAULT_DEPTH 32 > +#define DEFAULT_MEM 8 > + > +#define DEFAULT_FB_LEN (DEFAULT_WIDTH * DEFAULT_HEIGHT * DEFAULT_DEPTH / 8) > +...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...re. Better to just pass in __u64 and have userspace cast pointer to that type, IMO. > + }; > +} __attribute__ ((packed)); Packed structures generate terrible code on some architectures. Can you just pad structures to multiples of 64 bit, or to full union size, instead? > + > +enum copy_type { > + COPY_KERNEL, > + COPY_USER, > + COPY_NOCOPY, > +}; > + > +#define DEFAULT_WIDTH 800 > +#define DEFAULT_HEIGHT 600 > +#define DEFAULT_DEPTH 32 > +#define DEFAULT_MEM 8 > + > +#define DEFAULT_FB_LEN (DEFAULT_WIDTH * DEFAULT_HEIGHT * DEFAULT_DEPTH / 8) > +...
2011 Aug 31
1
[PATCH] hivex: Add byte runs for nodes and values
...| RNodeNotFound -> pr " if (r == 0)\n"; @@ -1829,6 +1898,8 @@ static void raise_closed (const char *) Noreturn; pr " for (int i = 0; r[i] != NULL; ++i) free (r[i]);\n"; pr " free (r);\n" | RLenType -> pr " rv = copy_type_len (len, t);\n" + | RLenNode -> pr " rv = copy_len (len);\n" + | RLenValue -> pr " rv = copy_len (len);\n" | RLenTypeVal -> pr " rv = copy_type_value (r, len, t);\n"; pr " free (r);\n" @@ -1951,6...