linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* btrfs-progs
@ 2012-04-19 22:26 James Daniel Smith
  0 siblings, 0 replies; 6+ messages in thread
From: James Daniel Smith @ 2012-04-19 22:26 UTC (permalink / raw)
  To: linux-btrfs

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

Here are a couple of cleanup patches. Please apply newline first.

Thanks!

-- 
James Smith

CT.Networks
I.T. Consultant / Networking Systems Analyst
smithjd15@gmail.com

[-- Attachment #2: btrfscleanup.diff --]
[-- Type: text/x-patch, Size: 1136 bytes --]

--- btrfs-progs/btrfs.c	2012-04-19 15:34:20.188146191 -0600
+++ btrfs.c	2012-04-19 15:37:43.680140829 -0600
@@ -105,7 +105,7 @@
 	{ do_resize, 2,
 	  "filesystem resize", "[+/-]<newsize>[gkm]|max <filesystem>\n"
 		"Resize the file system. If 'max' is passed, the filesystem\n"
-		"will occupe all available space on the device.",
+		"will occupy all available space on the device.",
 	  NULL
 	},
 	{ do_show_filesystem, 999,
@@ -155,7 +155,7 @@
 	},
 	{ do_scan, 999, 
 	  "device scan", "[<device>...]\n"
-		"Scan all device for or the passed device for a btrfs\n"
+		"Scan all devices or the passed device for a btrfs\n"
 		"filesystem.",
 	  NULL
 	},
@@ -171,12 +171,12 @@
 	},
 	{ do_ino_to_path, -2,
 	  "inspect-internal inode-resolve", "[-v] <inode> <path>\n"
-		"get file system paths for the given inode.\n",
+		"Get file system paths for the given inode.\n",
 	  NULL
 	},
 	{ do_logical_to_ino, -2,
 	  "inspect-internal logical-resolve", "[-v] [-P] <logical> <path>\n"
-		"get file system paths for the given logical address.\n",
+		"Get file system paths for the given logical address.\n",
 	  NULL
 	},
 	{ 0, 0, 0, 0 }

[-- Attachment #3: btrfsnewline.diff --]
[-- Type: text/x-patch, Size: 677 bytes --]

--- btrfs-progs/btrfs.c	2012-04-19 15:34:20.188146191 -0600
+++ btrfs.c	2012-04-19 15:40:43.681136087 -0600
@@ -95,7 +95,7 @@
 		"-t size    minimal size of file to be considered for defragmenting\n"
 	},
 	{ do_get_default_subvol, 1, "subvolume get-default", "<path>\n"
-		"get the default subvolume of a filesystem."
+		"get the default subvolume of a filesystem.\n"
 	},
 	{ do_fssync, 1,
 	  "filesystem sync", "<path>\n"
@@ -171,7 +171,7 @@
 	},
 	{ do_ino_to_path, -2,
 	  "inspect-internal inode-resolve", "[-v] <inode> <path>\n"
-		"get file system paths for the given inode.",
+		"get file system paths for the given inode.\n",
 	  NULL
 	},
 	{ do_logical_to_ino, -2,

^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <1993875.Fsvh6l0u6C@linux-lt2.site>]
* btrfs-progs
@ 2011-11-01 16:34 Andrew Benton
  2011-11-02 14:45 ` btrfs-progs Leonidas Spyropoulos
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Benton @ 2011-11-01 16:34 UTC (permalink / raw)
  To: linux-btrfs

Hello,

I've just pulled btrfs-progs from the new git repo
git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git
However, when I come to make it fails like so:

gcc -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -g -Werror -Os -c btrfsctl.c
gcc -g -Werror -Os -o btrfsctl btrfsctl.o ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o btrfslabel.o  -luuid
ls mkfs.c
mkfs.c
gcc -Wp,-MMD,./.mkfs.o.d,-MT,mkfs.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -g -Werror -Os -c mkfs.c
mkfs.c:39:24: fatal error: attr/xattr.h: No such file or directory
compilation terminated.
make: *** [mkfs.o] Error 1
andy@eccles:~/btrfs-progs$ 

Is attr a required dependency of btrfs-progs now?
If I sed -i 's#attr/#sys/#' mkfs.c then it compiles and installs (I've
not tried to use any of the tools yet). Is it wise to do this? I don't
use any extended attributes, I don't have extended attributes enabled
in my kernel config, I have no wish to install libattr.

Please CC me as I'm not subscribed,

Andy

^ permalink raw reply	[flat|nested] 6+ messages in thread
* btrfs-progs
@ 2011-08-27 23:29 Andrew Benton
  2011-08-28 12:54 ` btrfs-progs Hugo Mills
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Benton @ 2011-08-27 23:29 UTC (permalink / raw)
  To: linux-btrfs

Hello World!

I've just done a git pull from 
git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs-unstable.git
and looking at git log, the last commit was on Wed Oct 6 09:53:38 2010,
nearly a year ago. Is this project still maintained?

Andy

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-04-20  1:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-19 22:26 btrfs-progs James Daniel Smith
     [not found] <1993875.Fsvh6l0u6C@linux-lt2.site>
2012-04-20  1:42 ` btrfs-progs James Daniel Smith
  -- strict thread matches above, loose matches on Subject: below --
2011-11-01 16:34 btrfs-progs Andrew Benton
2011-11-02 14:45 ` btrfs-progs Leonidas Spyropoulos
2011-08-27 23:29 btrfs-progs Andrew Benton
2011-08-28 12:54 ` btrfs-progs Hugo Mills

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).