]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed old debug code.
authorPhilip Homburg <philip@cs.vu.nl>
Wed, 8 Aug 2007 15:27:07 +0000 (15:27 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Wed, 8 Aug 2007 15:27:07 +0000 (15:27 +0000)
servers/mfs/link.c

index 82c159d1a18fe68684a1b52705dbe911c6d0eb56..56d96ccb19f1519238cd9664cfe260521f33b038 100644 (file)
@@ -830,12 +830,7 @@ printf("fs_rename_s: next_new_superdirp: %d on 0x%x\n",
                                r = EINVAL;
                                break;
                        }
-                       {       static int count= 0;
-                               if (++count > 20)
-                                       panic(__FILE__, "too deep", NO_NUM);
-                       }
                }       
-               /*put_inode(new_superdirp);*/
        }       
 
        /* The old or new name must not be . or .. */
@@ -846,14 +841,6 @@ printf("fs_rename_s: next_new_superdirp: %d on 0x%x\n",
        /* Both parent directories must be on the same device. 
        if (old_dirp->i_dev != new_dirp->i_dev) r = EXDEV; */
 
-#if 0
-       /* Parent dirs must be writable, searchable and on a writable device */
-       if ((r1 = forbidden(old_dirp, W_BIT | X_BIT)) != OK ||
-           (r1 = forbidden(new_dirp, W_BIT | X_BIT)) != OK) {
-               r = r1;
-       }
-#endif
-
        /* Some tests apply only if the new path exists. */
        if (new_ip == NIL_INODE) {
                /* don't rename a file with a file system mounted on it.