Displaying 4 results from an estimated 4 matches for "46314cf".
Did you mean:
46214c
2010 Nov 16
2
[Btrfs-Progs] Update for lzo support
...http://marc.info/?l=linux-btrfs&m=128799063215123&w=2
---
btrfs.c | 2 +-
btrfs_cmds.c | 24 ++++++++++++++++++++----
ctree.h | 18 +++++++++++-------
ioctl.h | 9 ++++++++-
4 files changed, 40 insertions(+), 13 deletions(-)
diff --git a/btrfs.c b/btrfs.c
index 46314cf..1b4f403 100644
--- a/btrfs.c
+++ b/btrfs.c
@@ -65,7 +65,7 @@ static struct Command commands[] = {
"List the recently modified files in a filesystem."
},
{ do_defrag, -1,
- "filesystem defragment", "[-vcf] [-s start] [-l len] [-t size] <file>|<dir> [<...
2010 Mar 25
0
[PATCH 1/3] btrfs-progs: Fix a compile fail by strndup in RHEL5 env
...rfs-list.c b/btrfs-list.c
index 7741705..9dedb5d 100644
--- a/btrfs-list.c
+++ b/btrfs-list.c
@@ -16,6 +16,7 @@
* Boston, MA 021110-1307, USA.
*/
+#define _GNU_SOURCE
#ifndef __CHECKER__
#include <sys/ioctl.h>
#include <sys/mount.h>
diff --git a/btrfs.c b/btrfs.c
index ab5e57f..46314cf 100644
--- a/btrfs.c
+++ b/btrfs.c
@@ -14,7 +14,7 @@
* Boston, MA 021110-1307, USA.
*/
-
+#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
th...
2010 Dec 05
1
[PATCH 4/5][REPOST][BTRFS-PROGS] Avoid to scan cdrom and floppy
...| 10 +-
btrfs.devices | 24 ++++++
btrfs_cmds.c | 39 +++++++++--
man/btrfs.8.in | 22 ++++--
utils.c | 196 +++++++++++++++++++++++++++++++++++++++++++++++++++-
utils.h | 5 +
6 files changed, 279 insertions(+), 17 deletions(-)
diff --git a/btrfs.c b/btrfs.c
index 46314cf..d850e60 100644
--- a/btrfs.c
+++ b/btrfs.c
@@ -83,9 +83,10 @@ static struct Command commands[] = {
"will occupe all available space on the device."
},
{ do_show_filesystem, 999,
- "filesystem show", "[<uuid>|<label>]\n"
+ "filesystem show&q...
2010 Dec 11
1
[RFC] Improve btrfs subvolume find-new command
..._offset++;
@@ -828,8 +930,5 @@ int find_updated_files(int fd, u64 root_id, u64
oldest_gen)
} else
break;
}
- free(cache_dir_name);
- free(cache_full_name);
- printf("transid marker was %llu\n", (unsigned long long)max_found);
return ret;
}
diff --git a/btrfs.c b/btrfs.c
index 46314cf..1b5fe9f 100644
--- a/btrfs.c
+++ b/btrfs.c
@@ -61,9 +61,12 @@ static struct Command commands[] = {
{ do_subvol_list, 1, "subvolume list", "<path>\n"
"List the snapshot/subvolume of a filesystem."
},
- { do_find_newer, 2, "subvolume find-new", &q...