On Fri, Jul 29, 2016 at 12:01:42PM +0300, Lista Unx wrote: > Hello xfs experts, > > I am crawling in the dark from few days and I have no idea how to fix the following problem. On a centos 7 system: Ok, so you followed my advice on why you couldn't post to the list, but you ignored my answer as to the cause of the changing numbers of inodes. I'll repeat it here for the benefit of everyone, so they don't waste time chasing ghosts. That is, inodes are dynamically allocated so the number of supported inodes is directly proportional to the amount of free space left in the filesystem. You have filesystems with different amounts of free space, so the number of inodes the filesystem can support is different. free up some space, the number goes up. Used some space, the number goes down. This is expected. Hence the only thing that may be an issue is this: > # uname -a > Linux 1a 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux > > df is reporting 100% full of / and du is reporting only 1.7G usage from 50GB available (less than 4%). I want to mention that / is xfs. See below: > > # df -a|grep ^/ > /dev/mapper/centos-root 52403200 52400396 2804 100% / > ^^^^^^^^^^ ^^^^^^^^^^ > /dev/sda1 503040 131876 371164 27% /boot > /dev/mapper/centos-home 210529792 35204 210494588 1% /home > > du is estimating just 1.7G usage of / > # du -sch /* --exclude=home --exclude=boot ..... > 1.7G total > [root@localhost ~]# That's probably because there are open but unlinked files present in the filesystem, and du will not find them. e.g. large O_TMPFILE files, or files that applications are using as scratch space. You may even have zombie processes hanging about holding unlinked files open. lsof might find those files, it might not. There might also be orphan inodes on the unlinked lists, and without an unclean shutdown log recovery won't process them. So it may simply be best to run sync, then press the reset button to do a hard restart which will trigger log recovery on restart. If the problem still persists, then xfs_repair is really the only option to find out where the space has gone and recover it. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs