lucky.freebsd.fs
  Home FAQ Contact Sign in
lucky.freebsd.fs only
 
Advanced search
August 2008
motuwethfrsasuw
    123 31
45678910 32
11121314151617 33
18192021222324 34
25262728293031 35
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
lucky.freebsd.fs Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: kern/126287: [ufs] [panic] Kernel panics while mounting an UFS filesystem with snapshot enabled         


Author: linimon
Date: Aug 5, 2008 17:15

Synopsis: [ufs] [panic] Kernel panics while mounting an UFS filesystem with snapshot enabled

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: linimon
Responsible-Changed-When: Wed Aug 6 00:14:52 UTC 2008
Responsible-Changed-Why:
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=126287
no comments
  ZFS patches.         


Author: Pawel Jakub Dawidek
Date: Jul 27, 2008 05:54

Hi.

http://people.freebsd.org/~pjd/patches/zfs_20080727.patch.bz2

The patch above contains the most recent ZFS version that could be found
in OpenSolaris as of today. Apart for large amount of new functionality,
I belive there are many stability (and also performance) improvements
compared to the version from the base system.

Check out OpenSolaris website to find out the differences between base
system version and patch version.

Please test, test, test. If I get enough positive feedback, I may be
able to squeeze it into 7.1-RELEASE, but this might be hard.

If you have any questions, please use mailing lists
(freebsd-fs@FreeBSD.org would be the best).

Thank you in advance!

--
Pawel Jakub Dawidek http://www.wheel.pl
pjd@FreeBSD.org http://www.FreeBSD.org
FreeBSD committer Am I Evil? Yes, I Am!

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.4 (FreeBSD)
Show full article (1.08Kb)
54 Comments
  Re: kern/125536: [ext2fs] ext 2 mounts cleanly but fails on commands like ls         


Author: linimon
Date: Jul 12, 2008 15:04

Old Synopsis: ext 2 mounts cleanly but fails on commands like ls
New Synopsis: [ext2fs] ext 2 mounts cleanly but fails on commands like ls

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: linimon
Responsible-Changed-When: Sat Jul 12 22:04:20 UTC 2008
Responsible-Changed-Why:
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=125536
no comments
  Re: kern/93942: [vfs] [patch] panic: ufs_dirbad: bad dir (patch from DragonFly)         


Author: gavin
Date: Jun 20, 2008 13:03

Synopsis: [vfs] [patch] panic: ufs_dirbad: bad dir (patch from DragonFly)

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: gavin
Responsible-Changed-When: Fri Jun 20 20:01:34 UTC 2008
Responsible-Changed-Why:
Over to freebsd-fs, where hopefully somebody can assess this PR

http://www.freebsd.org/cgi/query-pr.cgi?pr=93942
no comments
  Re: mystery: lock up after fs dump         


Author: Andriy Gapon
Date: Jun 5, 2008 00:45

on 04/06/2008 19:10 Kostik Belousov said the following:
> SU are irrelevant to the problem I am thinking of.
>
> vfs_write_suspend() returns 0 when the filesystem being suspended is already
> in suspend state. vfs_write_resume() clears the suspend state.
>
> vfs_write_suspend/vfs_write_resume are used both by snapshot code and
> the gjournal. If two users of these interfaces interleave, then you could
> get:
>
> thread1 thread2
>
> vfs_write_suspend()
> <- fs is suspended there
> vfs_write_suspend() <- returns 0
> vfs_write_resume()
> <- fs is no more suspended
> thread2 is burned in flame
>
> Snapshots are protected against this because they are created through ...
Show full article (1.08Kb)
no comments
  ZFS deadlock         


Author: Johan Ström
Date: Apr 7, 2008 23:17

Hello

A box of mine running RELENG_7_0 and ZFS over a couple of disks (6
disks, 3 mirrors) seems to have gotten stuck. From Ctrl-T:

load: 0.50 cmd: zsh 40188 [zfs:&buf_hash_table.ht_locks[i].ht_lock]
0.02u 0.04s 0%% 3404k
load: 0.43 cmd: zsh 40188 [zfs:&buf_hash_table.ht_locks[i].ht_lock]
0.02u 0.04s 0%% 3404k
load: 0.10 cmd: zsh 40188 [zfs:&buf_hash_table.ht_locks[i].ht_lock]
0.02u 0.04s 0%% 3404k
load: 0.10 cmd: zsh 40188 [zfs:&buf_hash_table.ht_locks[i].ht_lock]
0.02u 0.04s 0%% 3404k
load: 0.11 cmd: zsh 40188 [zfs:&buf_hash_table.ht_locks[i].ht_lock]
0.02u 0.04s 0%% 3404k

Worked for a while then that stopped working too (was over ssh). When
trying a local login i only got

load: 0.09 cmd: login 1611 [zfs] 0.00u 0.00s 0%% 208k
Show full article (1.62Kb)
9 Comments
  unionfs status         


Author: Alexander V. Chernikov
Date: Mar 25, 2008 11:29

Hello people!

At this moment unionfs has got at least following problems:
1) File systems cannot mount onto upper/lower unionfs layer (partially
described in kern/117829)
2) There are problems with multithreaded programs accessing(writing)
files on unionfs (kern/109950)
3) As well there are problems with accessing unix sockets created on
upper/lower unionfs layers (kern/118346)
4) Doing mv filename same-filename causes kernel to panic on 6.X (and
printing warning about VOP_RENAME in 7+)
5) Making 'loops' when mounting unionfs causes kernel panic (kern/121385)

I have made patches solving first 4 problems
These patches are available at http://ipfw.ru/patches/
unionfs2.diff fixes fs mounting onto upper layer, unionfs_lmount.diff
fixes lower
unionfs_threads.diff and unionfs_unix.diff fixes cases 2) and 3)
unionfs_rename.diff fixes case with renaming

Can anybody comment/review ?
Show full article (0.94Kb)
9 Comments
  Re: bin/114468: [patch] [request] add -d option to umount(8) to detach md(4) device         


Author: rwatson
Date: Mar 9, 2008 06:08

Synopsis: [patch] [request] add -d option to umount(8) to detach md(4) device

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: rwatson
Responsible-Changed-When: Sun Mar 9 13:08:08 UTC 2008
Responsible-Changed-Why:
Over to maintainers.

http://www.freebsd.org/cgi/query-pr.cgi?pr=114468
no comments
  Re: bin/113049: [patch] [request] make quot(8) use getopt(3) and show usage() if no arguments         


Author: rwatson
Date: Mar 9, 2008 06:06

Synopsis: [patch] [request] make quot(8) use getopt(3) and show usage() if no arguments

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: rwatson
Responsible-Changed-When: Sun Mar 9 13:06:20 UTC 2008
Responsible-Changed-Why:
Over to maintainers.

http://www.freebsd.org/cgi/query-pr.cgi?pr=113049
no comments
  Re: bin/113838: [patch] [request] mount(8): add support for relative pathnames         


Author: rwatson
Date: Mar 9, 2008 06:00

Synopsis: [patch] [request] mount(8): add support for relative pathnames

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: rwatson
Responsible-Changed-When: Sun Mar 9 13:00:37 UTC 2008
Responsible-Changed-Why:
Over to maintainers.

http://www.freebsd.org/cgi/query-pr.cgi?pr=113838
no comments
1 2 3 4 5 6 7 8 9