From 54553d88a0126e5ff68f12a5f734c635748db53d Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 20 Oct 2009 18:25:04 +0100 Subject: Fix warnings * vm/vm_resident.c (vm_page_grab_contiguous_pages): Remove unused count_zeroes and not_found_em labels. --- vm/vm_resident.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'vm') diff --git a/vm/vm_resident.c b/vm/vm_resident.c index ef13145..5470368 100644 --- a/vm/vm_resident.c +++ b/vm/vm_resident.c @@ -1043,7 +1043,6 @@ count_ones: * search for beans here */ bits_so_far = 0; -count_zeroes: while ((bitpos < NBPEL) && ((v & 1) == 0)) { bitpos++; v >>= 1; @@ -1063,7 +1062,6 @@ count_zeroes: /* * We could not find enough contiguous pages. */ -not_found_em: simple_unlock(&vm_page_queue_free_lock); ret = KERN_RESOURCE_SHORTAGE; -- cgit v1.2.3