mm/filemap: fix parameters to test_bit()

mm/filemap.c: In function 'clear_bit_unlock_is_negative_byte':
mm/filemap.c:933:9: error: too few arguments to function 'test_bit'
return test_bit(PG_waiters);
^~~~~~~~

Fixes: b91e1302ad9b ('mm: optimize PageWaiters bit use for unlock_page()')
Signed-off-by: Olof Johansson <olof@lixom.net>
Brown-paper-bag-by: Linus Torvalds <dummy@duh.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Olof Johansson and committed by Linus Torvalds 98473f9f b91e1302

Changed files
+1 -1
mm
+1 -1
mm/filemap.c
··· 930 930 { 931 931 clear_bit_unlock(nr, mem); 932 932 /* smp_mb__after_atomic(); */ 933 - return test_bit(PG_waiters); 933 + return test_bit(PG_waiters, mem); 934 934 } 935 935 936 936 #endif