]> Zhao Yanbai Git Server - minix.git/commitdiff
VFS: let know when skipping reply
authorThomas Veerman <thomas@minix3.org>
Mon, 2 Apr 2012 15:23:33 +0000 (15:23 +0000)
committerThomas Veerman <thomas@minix3.org>
Fri, 13 Apr 2012 13:19:45 +0000 (13:19 +0000)
servers/vfs/main.c

index 86369189035624ec90de2e8caa901c26be6da1f4..4f6e0661cb4b3a020d71bc1b51e4f4b30896d28c 100644 (file)
@@ -287,6 +287,9 @@ static void *do_fs_reply(struct job *job)
   vmp->m_comm.c_cur_reqs--; /* We've got our reply, make room for others */
   if (rfp->fp_wtid != invalid_thread_id)
        worker_signal(worker_get(rfp->fp_wtid)); /* Continue this thread */
+  else
+       printf("VFS: consistency error: reply for finished job\n");
+
   return(NULL);
 }