Hi Igor,
"Igor Karasynskyi":
> > Do you mean,,,
> > # mount -t aufs -o br:/rw:/ro none /aufs
> > # mount -o remount,mod:/rw=ro /aufs
> > and crashed?
> I can't find information about bug in /var/log/*, so I try do
> screenshot of this problem, on screenshot also steps that I do after
> system boot.
So what you did is,
# mount -t aufs -o br:/rw1:/ro1:/ro2 none /aufs
# mount -o remount,prepend:/rw0 /aufs
# mount -o remount,mod:/rw1=ro /aufs
and crashed.
Won't you try this patch which produce more detailed debug information
at remount time, and send me the debug log?
You meight need to change these things to receive kernel debug log.
# echo 8 > /proc/sys/kernel/printk
(/etc/syslog.conf)
kern.debug /var/log/debug.log
# restart your_syslog_daemon
serial-console, netconsole or remote-syslog are recommended too.
Junjiro Okajima
----------------------------------------------------------------------
--- branch.c 2007/06/14 11:49:17 1.56
+++ branch.c 2007/06/15 00:49:11
@@ -798,13 +798,16 @@ int br_mod(struct super_block *sb, struc
/* no need file_list_lock() since sbinfo is locked */
//file_list_lock();
list_for_each_entry(file, &sb->s_files, f_u.fu_list) {
+ au_debug_on();
LKTRTrace("%.*s\n", DLNPair(file->f_dentry));
+ DbgFile(file);
fi_read_lock(file);
if (!S_ISREG(file->f_dentry->d_inode->i_mode)
|| !(file->f_mode & FMODE_WRITE)
|| fbstart(file) != bindex) {
FiMustNoWaiters(file);
fi_read_unlock(file);
+ au_debug_off();
continue;
}
@@ -812,8 +815,10 @@ int br_mod(struct super_block *sb, struc
hf = au_h_fptr(file);
hf->f_flags = au_file_roflags(hf->f_flags);
hf->f_mode &= ~FMODE_WRITE;
+ //put_write_access(hf->f_dentry->d_inode);
FiMustNoWaiters(file);
fi_read_unlock(file);
+ au_debug_off();
}
//file_list_unlock();
----------------------------------------------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/