]> Zhao Yanbai Git Server - minix.git/commit
VFS: remove erroneous assert
authorThomas Veerman <thomas@minix3.org>
Mon, 20 Feb 2012 09:10:58 +0000 (09:10 +0000)
committerThomas Veerman <thomas@minix3.org>
Mon, 20 Feb 2012 14:16:19 +0000 (14:16 +0000)
commit3b3ea9dc328d0461158eb5f694aeb258c0143af6
treefca599af9f7d6013498c3863cc79d26924685c96
parentbab9a671ef275098b1aa44a26094ea0d9dff3131
VFS: remove erroneous assert

The assert was meant as an additional check to the assert in link.c:198.
The reasoning behind the assert in link.c:198 is that once you've
obtained a write lock on a vmnt, you can't get an additional read lock
on the same vmnt. However, that does not always hold for the assert in
path.c:281 where the situation could be that you've obtained a read lock
and managed to get another read lock (this is possible). In other words,
the assert in path.c:281 is not the right place to check for that
situation.
servers/vfs/path.c