Fix rpc shutdown event condition bug

We want to wait for the cl_users to go down to zero, not for it to stay
positive. Quoth Trond (who wasn't even the author, but acked the wrong
version): "Argh! I need to increase my daily caffeine dosages."

Signed-off-by: Linus Torvalds <torvalds@osdl.org>

+1 -1
+1 -1
net/sunrpc/clnt.c
··· 269 269 clnt->cl_dead = 0; 270 270 rpc_killall_tasks(clnt); 271 271 wait_event_timeout(destroy_wait, 272 - atomic_read(&clnt->cl_users) > 0, 1*HZ); 272 + !atomic_read(&clnt->cl_users), 1*HZ); 273 273 } 274 274 275 275 if (atomic_read(&clnt->cl_users) < 0) {