Skip to content
Snippets Groups Projects
Commit fea96f55 authored by alex's avatar alex
Browse files

- commented ->delete_inode for a while

- additional debug message
parent 0640aad3
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,10 @@ struct super_operations lustre_super_operations =
{
.read_inode2 = ll_read_inode2,
.clear_inode = ll_clear_inode,
#if 0
/* should be fixed first */
.delete_inode = ll_delete_inode,
#endif
.put_super = lustre_put_super,
.statfs = ll_statfs,
.umount_begin = ll_umount_begin,
......
......@@ -627,9 +627,12 @@ static int mds_reint_create(struct mds_update_record *rec, int offset,
if ((rc = mds_try_to_split_dir(obd, dparent, &mea, 0))) {
if (rc > 0) {
/* dir got splitted */
CERROR("%s: splitted %lu/%u - %d\n",
CERROR("%s: splitted %lu/%u - %d/%d\n",
obd->obd_name, dparent->d_inode->i_ino,
dparent->d_inode->i_generation, rc);
dparent->d_inode->i_generation, rc,
parent_mode);
CERROR(" creation %*s was requested\n",
rec->ur_namelen - 1, rec->ur_name);
GOTO(cleanup, rc = -ERESTART);
} else {
/* error happened during spitting. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment