search for: dest_count

Displaying 4 results from an estimated 4 matches for "dest_count".

Did you mean: desc_count
2013 Jun 26
6
[PROGS PATCH] Import btrfs-extent-same
...for error + * == BTRFS_SAME_DATA_DIFFERS if data differs + */ + int32_t status; /* out - see above description */ + uint32_t reserved; +}; + +struct btrfs_ioctl_same_args { + uint64_t logical_offset; /* in - start of extent in source */ + uint64_t length; /* in - length of extent */ + uint16_t dest_count; /* in - total elements in info array */ + uint16_t reserved1; /* out - number of files that got deduped */ + uint32_t reserved2; + struct btrfs_ioctl_same_extent_info info[0]; +}; + +static void usage(const char *prog) +{ + printf("Usage: %s len file1 loff1 file2 loff2\n", prog); +} +...
2008 Mar 16
8
include a page in another
Hi, for my isbn plugin, I''m wishing to incldue generated isbn pages in caller pages (the ones with <isbn value=""> tags). But I want my isbn page to be processed before for its tags to be transformed (like the relocatable or other ones). Besides, i do not want its header to be included. Is there an easy solution for that, or should I do the work myself ? -- Nicolas
2010 Sep 17
1
2.0.2 : crashes with LDA
...ost.redirectme.net> (expanded from<xx at localhost>): Command died with signal 6: "/usr/local/libexec/dovecot/dovecot-lda -c /etc/dovecot2.conf". Command output: doveconf: Panic: file settings-parser.c: line 1838 (settings_copy_deflist_unique): assertion failed: (dest_count == ccount) doveconf: Error: Raw backtrace: /usr/local/lib/dovecot/libdovecot.so.0 [0x9395c0] -> /usr/local/lib/dovecot/libdovecot.so.0(default_fatal_handler+0x45) [0x9396b5] -> /usr/local/lib/dovecot/libdovecot.so.0 [0x938c78] -> /usr/local/lib/dovecot/libdovecot....
2013 Aug 06
6
[PATCH 0/4] btrfs: out-of-band (aka offline) dedupe v4
...leshed out, this series has a high degree of code sharing between itself and the clone code, and the locking has been updated. The ioctl accepts a struct: struct btrfs_ioctl_same_args { __u64 logical_offset; /* in - start of extent in source */ __u64 length; /* in - length of extent */ __u16 dest_count; /* in - total elements in info array */ __u16 reserved1; __u32 reserved2; struct btrfs_ioctl_same_extent_info info[0]; }; Userspace puts each duplicate extent (other than the source) in an item in the info array. As there can be multiple dedupes in one operation, each info item has it''...