search for: fityp

Displaying 3 results from an estimated 3 matches for "fityp".

Did you mean: ftyp
2013 Mar 15
0
[PATCH] btrfs-progs: mkfs: add missing raid5/6 description
...-- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/man/mkfs.btrfs.8.in b/man/mkfs.btrfs.8.in index 41163e0..db8c57c 100644 --- a/man/mkfs.btrfs.8.in +++ b/man/mkfs.btrfs.8.in @@ -37,7 +37,7 @@ mkfs.btrfs uses all the available storage for the filesystem. .TP \fB\-d\fR, \fB\-\-data \fItype\fR Specify how the data must be spanned across the devices specified. Valid -values are raid0, raid1, raid10 or single. +values are raid0, raid1, raid5, raid6, raid10 or single. .TP \fB\-f\fR Force overwrite when an existing filesystem is detected on the device. @@ -53,10 +53,11 @@ Specify a l...
2009 Jan 13
1
[btrfs-progs 1/4] Add man/mkfs.btrfs.8.in
...start the btrfs filesystem. The default value is zero, or the start of the device. +.TP +\fB\-b\fR, \fB\-\-byte\-count \fIsize\fR +Specify the size of the resultant filesystem. If this option is not used, +mkfs.btrfs uses all the available storage for the filesystem. +.TP +\fB\-d\fR, \fB\-\-data \fItype\fR +Specify how the data must be spanned across the devices specified. Valid +values are raid0, raid1, raid10 or single. +.TP +\fB\-l\fR, \fB\-\-leafsize \fIsize\fR +Specify the leaf size, the least data item in which btrfs stores data. The +default value is the page size. +.TP +\fB\-L\fR, \fB\-\...
2004 Feb 06
4
memory reduction
...s\fB); + +\fBvoid pool_destroy(struct alloc_pool *\fIpool\fB); + +\fBvoid *pool_alloc(struct alloc_pool *\fIpool\fB, size_t \fIsize\fB, char *\fImsg\fB); + +\fBvoid pool_free(struct alloc_pool *\fIpool\fB, sise_t \fIsize\fB, void *\fIaddr\fB); + +\fBvoid *pool_talloc(struct alloc_pool *\fIpool\fB, \fItype\fB), int \fIcount\fB, char *\fImsg\fB); + +\fBvoid pool_tfree(struct alloc_pool *\fIpool\fB, \fItype\fB, int \fIcount\fB, void *\fIaddr\fB); +.SH DESCRIPTION +.P +The pool allocation routines use +.B malloc() +for underlying memory management. +What allocation pools do is cause +memory within a gi...