linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2) e2fsprogs: Two small patches
@ 2009-10-17 11:26 Michael Roth
  2009-10-17 11:26 ` [PATCH 1/2] e4defrag: install binary and man page Michael Roth
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Michael Roth @ 2009-10-17 11:26 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: tytso, tytso

Two small patches for e2fsprogs:

 .gitignore       |   23 +++++++++++++++++++++++
 misc/Makefile.in |    5 +++--
 2 files changed, 26 insertions(+), 2 deletions(-)



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

* [PATCH 1/2] e4defrag: install binary and man page
  2009-10-17 11:26 [PATCH 0/2) e2fsprogs: Two small patches Michael Roth
@ 2009-10-17 11:26 ` Michael Roth
  2009-10-17 18:41   ` Eric Sandeen
  2009-10-17 11:26 ` [PATCH 2/2] Update .gitignore Michael Roth
  2009-10-24 18:29 ` [PATCH 0/2) e2fsprogs: Two small patches Theodore Tso
  2 siblings, 1 reply; 5+ messages in thread
From: Michael Roth @ 2009-10-17 11:26 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: tytso, tytso, Michael Roth

Signed-off-by: Michael Roth <mroth@nessie.de>
---
 misc/Makefile.in |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/misc/Makefile.in b/misc/Makefile.in
index 0600ad5..81fe9b3 100644
--- a/misc/Makefile.in
+++ b/misc/Makefile.in
@@ -25,10 +25,11 @@ INSTALL = @INSTALL@
 
 SPROGS=		mke2fs badblocks tune2fs dumpe2fs $(BLKID_PROG) logsave \
 			$(E2IMAGE_PROG) @FSCK_PROG@ e2undo
-USPROGS=	mklost+found filefrag e2freefrag $(UUIDD_PROG)
+USPROGS=	mklost+found filefrag e2freefrag $(UUIDD_PROG) e4defrag
 SMANPAGES=	tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks.8 \
 			e2label.8 $(FINDFS_MAN) $(BLKID_MAN) $(E2IMAGE_MAN) \
-			logsave.8 filefrag.8 e2freefrag.8 e2undo.8 $(UUIDD_MAN) @FSCK_MAN@
+			logsave.8 filefrag.8 e2freefrag.8 e2undo.8 \
+			$(UUIDD_MAN) @FSCK_MAN@ e4defrag.8
 FMANPAGES=	mke2fs.conf.5
 
 UPROGS=		chattr lsattr @UUID_CMT@ uuidgen
-- 
1.6.4.4


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

* [PATCH 2/2] Update .gitignore
  2009-10-17 11:26 [PATCH 0/2) e2fsprogs: Two small patches Michael Roth
  2009-10-17 11:26 ` [PATCH 1/2] e4defrag: install binary and man page Michael Roth
@ 2009-10-17 11:26 ` Michael Roth
  2009-10-24 18:29 ` [PATCH 0/2) e2fsprogs: Two small patches Theodore Tso
  2 siblings, 0 replies; 5+ messages in thread
From: Michael Roth @ 2009-10-17 11:26 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: tytso, tytso, Michael Roth

Signed-off-by: Michael Roth <mroth@nessie.de>
---
 .gitignore |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index 0e21aea..99ab2b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,12 +15,25 @@ config.status
 debugfs/debug_cmds.c
 debugfs/debugfs
 debugfs/debugfs.8
+doc/libext2fs.aux
+doc/libext2fs.cp
+doc/libext2fs.dvi
+doc/libext2fs.fn
+doc/libext2fs.fns
 doc/libext2fs.info
+doc/libext2fs.ky
+doc/libext2fs.log
+doc/libext2fs.pg
+doc/libext2fs.toc
+doc/libext2fs.tp
+doc/libext2fs.vr
+e2fsck/crc32table.h
 e2fsck/e2fsck
 e2fsck/e2fsck.8
 e2fsck/e2fsck.conf.5
 e2fsck/e2fsck.shared
 e2fsck/e2fsck.static
+e2fsck/gen_crc32table
 e2fsck/prof_err.c
 e2fsck/prof_err.h
 e2fsprogs.spec
@@ -77,12 +90,19 @@ misc/blkid
 misc/blkid.8
 misc/chattr
 misc/chattr.1
+misc/default_profile.c
 misc/dumpe2fs
 misc/dumpe2fs.8
+misc/e2freefrag
+misc/e2freefrag.8
 misc/e2image
 misc/e2image.8
 misc/e2initrd_helper
 misc/e2label.8
+misc/e2undo
+misc/e2undo.8
+misc/e4defrag
+misc/e4defrag.8
 misc/filefrag
 misc/filefrag.8
 misc/findfs.8
@@ -101,10 +121,13 @@ misc/prof_err.c
 misc/prof_err.h
 misc/tune2fs
 misc/tune2fs.8
+misc/uuidd
+misc/uuidd.8
 misc/uuidgen
 misc/uuidgen.1
 po/Makefile.in
 po/POTFILES
+public_config.h
 resize/resize2fs
 resize/resize2fs.8
 resize/test_extent
-- 
1.6.4.4


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

* Re: [PATCH 1/2] e4defrag: install binary and man page
  2009-10-17 11:26 ` [PATCH 1/2] e4defrag: install binary and man page Michael Roth
@ 2009-10-17 18:41   ` Eric Sandeen
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Sandeen @ 2009-10-17 18:41 UTC (permalink / raw)
  To: Michael Roth
  Cc: linux-fsdevel@vger.kernel.org, tytso@mit.edu, tytso@alum.mit.edu,
	Michael Roth

I'm not sure I have enough confidence in defrag to install & ship by  
default, yet...

-Eric

On Oct 17, 2009, at 6:26 AM, Michael Roth <mroth@nessie.de> wrote:

> Signed-off-by: Michael Roth <mroth@nessie.de>
> ---
> misc/Makefile.in |    5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/misc/Makefile.in b/misc/Makefile.in
> index 0600ad5..81fe9b3 100644
> --- a/misc/Makefile.in
> +++ b/misc/Makefile.in
> @@ -25,10 +25,11 @@ INSTALL = @INSTALL@
>
> SPROGS=        mke2fs badblocks tune2fs dumpe2fs $(BLKID_PROG)  
> logsave \
>            $(E2IMAGE_PROG) @FSCK_PROG@ e2undo
> -USPROGS=    mklost+found filefrag e2freefrag $(UUIDD_PROG)
> +USPROGS=    mklost+found filefrag e2freefrag $(UUIDD_PROG) e4defrag
> SMANPAGES=    tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks. 
> 8 \
>            e2label.8 $(FINDFS_MAN) $(BLKID_MAN) $(E2IMAGE_MAN) \
> -            logsave.8 filefrag.8 e2freefrag.8 e2undo.8 $(UUIDD_MAN)  
> @FSCK_MAN@
> +            logsave.8 filefrag.8 e2freefrag.8 e2undo.8 \
> +            $(UUIDD_MAN) @FSCK_MAN@ e4defrag.8
> FMANPAGES=    mke2fs.conf.5
>
> UPROGS=        chattr lsattr @UUID_CMT@ uuidgen
> -- 
> 1.6.4.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux- 
> fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

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

* Re: [PATCH 0/2) e2fsprogs: Two small patches
  2009-10-17 11:26 [PATCH 0/2) e2fsprogs: Two small patches Michael Roth
  2009-10-17 11:26 ` [PATCH 1/2] e4defrag: install binary and man page Michael Roth
  2009-10-17 11:26 ` [PATCH 2/2] Update .gitignore Michael Roth
@ 2009-10-24 18:29 ` Theodore Tso
  2 siblings, 0 replies; 5+ messages in thread
From: Theodore Tso @ 2009-10-24 18:29 UTC (permalink / raw)
  To: Michael Roth; +Cc: linux-fsdevel, tytso

On Sat, Oct 17, 2009 at 01:26:49PM +0200, Michael Roth wrote:
> Two small patches for e2fsprogs:
> 
>  .gitignore       |   23 +++++++++++++++++++++++
>  misc/Makefile.in |    5 +++--
>  2 files changed, 26 insertions(+), 2 deletions(-)

Thanks, I've accepted the update to .gitignore.  As far as e4defrag,
I'm not yet 100% convinced I'm confident enough in it to want to be
installing it by default just yet.

						- Ted

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

end of thread, other threads:[~2009-10-24 23:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-17 11:26 [PATCH 0/2) e2fsprogs: Two small patches Michael Roth
2009-10-17 11:26 ` [PATCH 1/2] e4defrag: install binary and man page Michael Roth
2009-10-17 18:41   ` Eric Sandeen
2009-10-17 11:26 ` [PATCH 2/2] Update .gitignore Michael Roth
2009-10-24 18:29 ` [PATCH 0/2) e2fsprogs: Two small patches Theodore Tso

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).