[BACK]Return to ufs_inode.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ufs / ufs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/ufs/ufs/ufs_inode.c between version 1.102 and 1.103

version 1.102, 2017/10/28 00:37:13 version 1.103, 2018/01/28 10:01:18
Line 149  out:
Line 149  out:
          */           */
         *ap->a_recycle = (ip->i_mode == 0);          *ap->a_recycle = (ip->i_mode == 0);
   
           if (ip->i_mode == 0 && (DIP(ip, size) != 0 || DIP(ip, blocks) != 0)) {
                   printf("%s: unlinked ino %" PRId64 " on \"%s\" has"
                       " non zero size %" PRIx64 " or blocks %" PRIx64
                       " with allerror %d\n",
                       __func__, ip->i_number, mp->mnt_stat.f_mntonname,
                       DIP(ip, size), DIP(ip, blocks), allerror);
                   panic("%s: dirty filesystem?", __func__);
           }
   
         return (allerror);          return (allerror);
 }  }
   

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103

CVSweb <webmaster@jp.NetBSD.org>