search for: sandeen

Displaying 20 results from an estimated 93 matches for "sandeen".

Did you mean: sandeep
2013 Apr 21
4
[PATCH] xfstests: remove recursive include in filter.btrfs
Not sure how this happened, but filter.btrfs including itself leads to immense sadness for any file that includes it. (I got a segfault when I tried to run 307) Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- diff --git a/common/filter.btrfs b/common/filter.btrfs index b1aa733..99d04a6 100644 --- a/common/filter.btrfs +++ b/common/filter.btrfs @@ -1,7 +1,5 @@ # Filters for btrfs command output -. ./common/filter.btrfs - # Some, but not all, commands emit "Btrfs &...
2005 Mar 13
0
[sandeen@sgi.com: RHEL3-compatible kernels w/ xfs and
Hi, just FYI :) ----- Forwarded message from Eric Sandeen <sandeen@sgi.com> ----- Date: Fri, 11 Mar 2005 11:17:13 -0600 From: Eric Sandeen <sandeen@sgi.com> User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) To: "''linux-xfs@oss.sgi.com''" <linux-xfs@oss.sgi.com> Subject: RHEL3-compatible kernels w/ xfs and oth...
2014 Oct 17
4
Syslinux 6.03 released
...t hold them for 6.05. >> >> if 64-bit support for ext4 is mostly ready, you may want to release 6.04 >> in less than ten days, so that Daniel has a chance to package it up for >> Debian jessie (unless he has other requirements, of course). > > I don't know. Eric Sandeen at Red Hat was working on it last I heard. > > -hpa > Aware of it, haven't worked on it yet, will try to get to it soon... Unless Lukas has had a chance? Eric
2004 Sep 12
3
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
Josh Coalson wrote: > --- Eric Sandeen <sandeen@sandeen.net> wrote: > >>1) how to generate a cue sheet to store in the flac file (on linux?) >> I've seen cddb2cue, is this a decent way? or cdrdao can generate >> a toc file, then convert that to a cue sheet.... > > > I think whatever prov...
2004 Sep 11
5
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
This must be possible; not sure how to do it yet. :) After facing the thought of going through my cd collection for a 3rd time for re-encoding, it occurred to me that I should just flac the whole CD and add a cue sheet, and then back up to DVDs. That way -next- time I need to re-encode to any format, I can handle ~1/20th the discs, compared to my whole cd collection. :) Wondering if
2013 Mar 09
4
[PATCH] use rcu_barrier() to wait for bdev puts at unmount
...ts & puts shows a kworker thread doing a blkdev put after mkfs attempts a get; this is left over from the unmount. Adding an rcu_barrier() to btrfs_close_devices() causes unmount to wait until all blkdev_put()s are done, and the device is truly free once unmount completes. Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- p.s. I debated putting it into close_ctree(); I don''t know if there'' anything else to wait for. Thoughts? diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 5cbb7f4..258316a 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -680,...
2013 May 09
1
[PATCH] blktrace: document -k option
the -k option was missing from the usage() output and was present only in the man page synopsis. Say a few more words about it. Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- diff --git a/blktrace.c b/blktrace.c index 89aaaac..4e96573 100644 --- a/blktrace.c +++ b/blktrace.c @@ -450,6 +450,7 @@ static char usage_str[] = "\n\n" \ "[ -p <port number> | --port=<port number>]\n" \ "[ -s...
2009 Feb 05
1
Questions regarding journal replay
Today, I had to uncleanly shutdown one of our machines due to an error in 2.6.28.3. Durin the boot sequence, the ext4 partition /home experienced a journal replay. /home looks like this: /dev/mapper/volg1-logv1 on /home type ext4 (rw,noexec,nodev,noatime,errors=remount-ro) Filesystem Size Used Avail Use% Mounted on /dev/mapper/volg1-logv1 2,4T 1,4T 1022G 58% /home Filesystem
2014 Aug 18
1
Re: extended filesystems
----- Original Message ----- From: "Eric Sandeen" <sandeen@redhat.com> To: "Bill Cunningham" <billcun@suddenlink.net>; <Ext3-users@redhat.com> Sent: Sunday, August 17, 2014 4:47 PM Subject: Re: extended filesystems [snip] > So the first thing you've learned is that it is not in fact too much > overhead...
2014 Nov 28
0
Syslinux 6.03 released
On Fri, Oct 17, 2014 at 3:04 PM, Eric Sandeen <esandeen at redhat.com> wrote: > On Oct 17, 2014, at 1:30 PM, "H. Peter Anvin" <hpa at zytor.com> wrote: >> >>> On 10/17/2014 12:19 AM, Ferenc Wagner wrote: >>> "H. Peter Anvin" <hpa at zytor.com> writes: >>> >>>&gt...
2013 Jul 02
6
[PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
...tcase 302, changes are made based on comments from Eric: http://oss.sgi.com/archives/xfs/2013-03/msg00231.html Two new common/rc functions used in this script (_require_cp_reflink and _verify_reflink) have been submitted recently: http://oss.sgi.com/archives/xfs/2013-05/msg00745.html Thanks to Eric Sandeen and Dave Chinner for the reviews. Version 3: fixing wrapped patch. Signed-off-by: Koen De Wit <koen.de.wit@oracle.com> --- tests/btrfs/316 | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++ tests/btrfs/316.out | 39 +++++++++++++++ tests/btrfs/group | 1 + 3 files chang...
2013 Apr 11
2
[PATCH 1/2] btrfs-progs: replace blkid_probe_get_wholedisk_devno
...ixed since 5cd0823 libblkid: fix blkid_devno_to_wholedisk(), present in util-linux 2.17 and beyond. If we happen to be missing that fix, the worst that happens is that we''d fail to detect that a device is an ssd; the upside is that this code compiles on older systems. Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- diff --git a/mkfs.c b/mkfs.c index c8cb395..7df78fc 100644 --- a/mkfs.c +++ b/mkfs.c @@ -1215,9 +1215,8 @@ static int check_leaf_or_node_size(u32 size, u32 sectorsize) static int is_ssd(const char *file) { - char *devname; blkid_probe probe; - char *dev; + char...
2013 Sep 17
2
Re: Numbers behind "df" and "tune2fs"
...Or maybe a technical reason that makes thoses numbers some added values? The least would be to have the df algorithms documented somewhere? A document that explains intentions and how the values are obtained. The same for tune2fs and dumpe2fs (what really means the given numbers?) 2013/9/16 Eric Sandeen <sandeen@redhat.com>: > On 9/16/13 9:44 AM, Nicolas Michel wrote: >> Thanks for you help. I also tried adding some other informations as you suggest: >> I can also take into account: >> - "Reserved block count: XXXXXXX" from tune2fs that gives me the >&gt...
2013 Sep 16
2
Re: Numbers behind "df" and "tune2fs"
...ccount: - "Reserved block count: XXXXXXX" from tune2fs that gives me the number of blocks reserved for root - Reserved GDT blocks: XXX But I didn't thought about the FS journal. How can I gather information about it? (it's size and any other information?) 2013/9/16 Eric Sandeen <sandeen@redhat.com>: > On 9/16/13 5:16 AM, Nicolas Michel wrote: >> Hello guys, >> >> I have some difficulties to understand what really are the numbers >> behing "df" and tune2fs. You'll find the output of tune2fs and df >> below, on which my m...
2013 Sep 16
0
Re: Numbers behind "df" and "tune2fs"
...8 Journal backup: inode blocks Journal features: journal_incompat_revoke Journal size: 128M Journal length: 32768 But you also need to take into account inode tables, inode allocation bitmaps, block allocation bitmaps ... -Eric > 2013/9/16 Eric Sandeen <sandeen@redhat.com>: >> On 9/16/13 5:16 AM, Nicolas Michel wrote: >>> Hello guys, >>> >>> I have some difficulties to understand what really are the numbers >>> behing "df" and tune2fs. You'll find the output of tune2fs and df >>&...
2014 Nov 28
0
Syslinux 6.03 released
On Fri, 17 Oct 2014, Eric Sandeen wrote: > Date: Fri, 17 Oct 2014 15:04:41 -0400 (EDT) > From: Eric Sandeen <esandeen at redhat.com> > To: H. Peter Anvin <hpa at zytor.com> > Cc: Ferenc Wagner <wferi at niif.hu>, > For discussion of Syslinux and tftp-hpa <syslinux at zytor.com>, >...
2004 Sep 10
0
Smarter flac / samba VFS module possible?
I'm not sure Bery (the author) is subscribed here; he's probably the best one to ask first. Josh --- Eric Sandeen <sandeen@sandeen.net> wrote: > Hi all - > > Hope this isn't too OT - I've been playing with the file extention > mapper VFS module for samba (http://file-ext-map.sourceforge.net/) to > play flac files on my Audiotron. The above module takes any *.flac > file >...
2004 Sep 12
0
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
--- Eric Sandeen <sandeen@sandeen.net> wrote: > 1) how to generate a cue sheet to store in the flac file (on linux?) > I've seen cddb2cue, is this a decent way? or cdrdao can generate > a toc file, then convert that to a cue sheet.... I think whatever provides cdrdao also provides toc2c...
2004 Sep 13
1
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
--- Eric Sandeen <sandeen@sandeen.net> wrote: > *I'm not sure why flac -d 1.flac 2.flac 3.flac outputs sequential > wavs > rather than one big wav; is this intentional and/or needed? I > suppose > the "one big wav" approach would require flac to look at all input > files &g...
2006 Feb 25
1
convert metaflac tags to utf-8?
Hi, I realize that this is not strictly flac-related, but... I've got my collection in flac now, and at the end of the endeavor, I realized that (I think...) I've managed to have a few different encodings in the tags, one way or another. For instance: [root@localhost Zen Arcade]# metaflac --list 01-Something\ I\ Learned\ Today.flac > 1 [root@localhost Zen Arcade]# metaflac