patch-2.3.3 linux/mm/swapfile.c
Next file: linux/net/core/filter.c
Previous file: linux/mm/mlock.c
Back to the patch index
Back to the overall index
-  Lines: 19
 -  Date:
Sat May 15 23:43:05 1999
 -  Orig file: 
v2.3.2/linux/mm/swapfile.c
 -  Orig date: 
Sun Mar  7 15:49:14 1999
 
diff -u --recursive --new-file v2.3.2/linux/mm/swapfile.c linux/mm/swapfile.c
@@ -473,6 +473,18 @@
 	return len;
 }
 
+int is_swap_partition(kdev_t dev) {
+	struct swap_info_struct *ptr = swap_info;
+	int i;
+
+	for (i = 0 ; i < nr_swapfiles ; i++, ptr++) {
+		if (ptr->flags & SWP_USED)
+			if (ptr->swap_device == dev)
+				return 1;
+	}
+	return 0;
+}
+
 /*
  * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
  *
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)