| From | Sent On | Attachments |
|---|---|---|
| Masanori OZAWA | Dec 28, 2005 7:45 pm | |
| Masanori OZAWA | Dec 28, 2005 10:19 pm | |
| Dario Freni | Dec 29, 2005 8:11 am | |
| Danny Braniss | Jan 1, 2006 11:51 pm | |
| Masanori OZAWA | Jan 5, 2006 3:26 am | |
| Masanori OZAWA | Jan 5, 2006 4:26 am | |
| Daichi GOTO | Jan 9, 2006 6:08 am | |
| Matteo Riondato | Jan 10, 2006 12:21 am | |
| Masanori OZAWA | Jan 10, 2006 3:04 am | |
| Daichi GOTO | Jan 14, 2006 10:32 am | |
| Dario Freni | Jan 17, 2006 9:30 am | |
| Dario Freni | Feb 4, 2006 7:06 pm | |
| Daichi GOTO | Feb 4, 2006 9:20 pm | |
| Danny Braniss | Feb 5, 2006 1:54 am | |
| Daichi GOTO | Feb 5, 2006 2:15 am | |
| Dario Freni | Feb 5, 2006 11:49 am | |
| Dario Freni | Feb 6, 2006 1:19 am | |
| Daichi GOTO | Feb 6, 2006 2:18 am | |
| Daichi GOTO | Feb 6, 2006 3:33 am | |
| Daichi GOTO | Feb 9, 2006 6:05 am | |
| Dario Freni | Feb 9, 2006 12:13 pm | |
| Cy Schubert | Feb 9, 2006 8:23 pm | |
| Dario Freni | Feb 10, 2006 11:34 am | |
| Daichi GOTO | Feb 12, 2006 7:17 pm | |
| Daichi GOTO | Mar 15, 2006 9:17 am | |
| Daichi GOTO | Mar 15, 2006 9:25 am | |
| Daichi GOTO | Mar 16, 2006 3:15 am | |
| Daichi GOTO | Mar 16, 2006 6:12 am | |
| Scott Long | Mar 16, 2006 12:36 pm | |
| Jan Mikkelsen | Mar 16, 2006 2:01 pm | |
| Peter Blok | Mar 16, 2006 2:25 pm | |
| Danny Braniss | Mar 17, 2006 9:11 am | |
| Jacques Marneweck | Mar 17, 2006 12:38 pm | |
| Alexander Leidinger | Mar 17, 2006 2:08 pm | |
| Scott Long | Mar 17, 2006 3:34 pm | |
| Kris Kennaway | Mar 17, 2006 5:33 pm | |
| Kris Kennaway | Mar 19, 2006 6:19 pm | |
| Daichi GOTO | Mar 20, 2006 7:17 am | |
| Dario Freni | Mar 21, 2006 1:44 am | |
| Daichi GOTO | Apr 5, 2006 1:46 pm | |
| Kris Kennaway | Apr 5, 2006 5:37 pm | |
| Daichi GOTO | Apr 6, 2006 9:24 am | |
| Daichi GOTO | Apr 25, 2006 12:19 pm | |
| Robert Watson | Apr 25, 2006 12:56 pm | |
| Munehiro Matsuda | Apr 25, 2006 3:48 pm | |
| Kris Kennaway | Apr 25, 2006 5:55 pm | |
| Daichi GOTO | Apr 26, 2006 12:24 pm | |
| Daichi GOTO | Apr 26, 2006 1:26 pm | |
| Daichi GOTO | Apr 26, 2006 1:43 pm | |
| Daichi GOTO | Apr 26, 2006 2:13 pm | |
| Fabian Keil | Apr 26, 2006 3:03 pm | |
| Fabian Keil | Apr 26, 2006 3:46 pm | |
| Fabian Keil | Apr 26, 2006 6:44 pm | |
| Daichi GOTO | May 25, 2006 3:09 pm | |
| Daichi GOTO | May 30, 2006 1:47 pm | |
| Dag-Erling Smørgrav | May 31, 2006 4:47 am | |
| Wilko Bulte | May 31, 2006 4:53 am | |
| Dag-Erling Smørgrav | May 31, 2006 5:44 am | |
| Alexander Leidinger | May 31, 2006 5:48 am | |
| Alexander Leidinger | May 31, 2006 5:48 am | |
| André Braga | May 31, 2006 11:57 am | |
| Daichi GOTO | Jun 1, 2006 5:05 am | |
| Robert Watson | Jun 1, 2006 5:58 am | |
| André Braga | Jun 2, 2006 4:30 am | |
| Dario Freni | Jun 2, 2006 8:43 pm | |
| Hiroo Ono | Jun 11, 2006 12:04 am | |
| Daichi GOTO | Jun 11, 2006 6:58 pm |
| Subject: | [ANN] unionfs patchset-11 release | |
|---|---|---|
| From: | Fabian Keil (free...@fabiankeil.de) | |
| Date: | Apr 26, 2006 3:03:55 pm | |
| List: | org.freebsd.freebsd-hackers | |
Daichi GOTO <dai...@freebsd.org> wrote:
Fabian Keil wrote:
Looks like the attachment was filtered.
I got a different panic on FreeBSD TP51.local 6.1-RC FreeBSD 6.1-RC #22: Wed Apr 26 13:25:57 CEST 2006 after mounting an empty directory above /usr/src, applying a patch and using find's -type f option shortly afterwards to show the files in the directory on top:
Muuuu...
We tried as follow, but we could not get the same error :( It looks very fine.
# cd /usr/ # mkdir hoge # mount_unionfs -c transparent -o noatime /usr/hoge /usr/src # cd src # find . -type f &; find . -type f &; find . -type f & # cd /usr/ # umount /usr/src # rm -r hoge # mkdir hoge # mount_unionfs -c transparent /usr/hoge /usr/src # cd src # find . -type f &; find . -type f &; find . -type f &
What do you make of it?
I didn't give you enough information, sorry.
What I'm doing is:
fk@TP51 ~ $mkdir /tmp/unionfs-src/ fk@TP51 ~ $mount_unionfs /tmp/unionfs-src /usr/src fk@TP51 ~ $cd /usr/src fk@TP51 /usr/src $patch -p1 < ~/test/combi.patch fk@TP51 /usr/src $find /tmp/unionfs-src/ -type f [Panic]
~/test/combi.patch changes about twenty files.
I'm not sure if it's important, but /usr was mounted readonly and /tmp is a different file system.
My kernel has options WITNESS enabled.
The last step doesn't seem to be the only way to get a problem, I tried the first four steps again and umount /usr/src resulted in a reboot.
I was running Xorg and didn't get a panic, but I'll try again without Xorg, to see if it's the same problem.
Fabian





