On Mon, Sep 24, 2012 at 04:49:43PM +1200, Gregory Machin wrote: > Hi. > > Since I started using Acronis backup software I have the following in my logs : What kernel? > Sep 22 18:00:16 nzhmlfpr04 kernel: XFS (dm-2): xlog_space_left: head behind tail > Sep 22 18:00:16 nzhmlfpr04 kernel: tail_cycle = 20, tail_bytes = 26561024 > Sep 22 18:00:16 nzhmlfpr04 kernel: GH cycle = 20, GH bytes = 26540592 20,432 bytes behind. ... > Sep 22 18:01:03 nzhmlfpr04 kernel: XFS (dm-2): xlog_space_left: head behind tail > Sep 22 18:01:03 nzhmlfpr04 kernel: tail_cycle = 20, tail_bytes = 26564096 > Sep 22 18:01:03 nzhmlfpr04 kernel: GH cycle = 20, GH bytes = 26543656 And that's 20440 bytes behind. So, an 8 byte leak - sounds rather familiar: $ gl -n 1 3948659 commit 3948659e30808fbaa7673bbe89de2ae9769e20a7 Author: Dave Chinner <dchinner@xxxxxxxxxx> Date: Thu Mar 22 05:15:11 2012 +0000 xfs: Account log unmount transaction correctly There have been a few reports of this warning appearing recently: XFS (dm-4): xlog_space_left: head behind tail tail_cycle = 129, tail_bytes = 20163072 GH cycle = 129, GH bytes = 20162880 The common cause appears to be lots of freeze and unfreeze cycles, and the output from the warnings indicates that we are leaking around 8 bytes of log space per freeze/unfreeze cycle. When we freeze the filesystem, we write an unmount record and that uses xlog_write directly - a special type of transaction, effectively. What it doesn't do, however, is correctly account for the log space it uses. The unmount record writes an 8 byte structure with a special magic number into the log, and the space this consumes is not accounted for in the log ticket tracking the operation. Hence we leak 8 bytes every unmount record that is written. Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx> Reviewed-by: Christoph Hellwig <hch@xxxxxx> Signed-off-by: Ben Myers <bpm@xxxxxxx> $ git describe --contains 3948659 v3.4-rc1~55^2~3 So, fixed in 3.4. FWIW, this commit is in the series I proposed recently for back porting to 3.0.x stable kernel. .... > Sep 22 20:17:54 nzhmlfpr04 kernel: XFS (dm-3): xlog_space_left: head behind tail ^^^^ > Sep 22 20:17:54 nzhmlfpr04 kernel: tail_cycle = 125, tail_bytes = 489472 > Sep 22 20:17:54 nzhmlfpr04 kernel: GH cycle = 125, GH bytes = 468080 > Sep 22 20:19:07 nzhmlfpr04 kernel: XFS (snumbd11d): Corruption ^^^^^^^^^ > detected. Unmount and run xfs_repair Note the different device names the errors are for? So the log space warnings are from different filesystems to the one that corruption has been found on. IOWs, unrelated. > I want to be sure before I start pointing fingures and asking > questions as to why I'm seeing the first lot of logs Acronis is freezing/thawing the filesystem to get a consistent backup image, hence triggering the problem. > and what else > could have cause the 2nd ? Don't know. There's no stack trace in the error message, so I don't even know where it came from. have you modified the xfs_error_level sysctl to turn off verbose reporting? Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs