[Cluster-devel] cluster/gfs gfs_debug/basic.c gfs_debug/main.c ...

cfeist at sourceware.org cfeist at sourceware.org
Mon Aug 21 21:44:34 UTC 2006


CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	cfeist at sourceware.org	2006-08-21 21:44:28

Modified files:
	gfs/gfs_debug  : basic.c main.c ondisk.c readfile.c util.c 
	gfs/gfs_edit   : ondisk.c 
	gfs/gfs_grow   : ondisk.c 
	gfs/gfs_jadd   : main.c ondisk.c 
	gfs/gfs_quota  : check.c main.c names.c ondisk.c 
	gfs/gfs_tool   : counters.c df.c layout.c misc.c ondisk.c sb.c 
	                 tune.c util.c 
	gfs/init.d     : Makefile 

Log message:
	- Install the init script in the correct place.
	- Change includes for gfs_ondisk.h & gfs_ioctl.h.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_debug/basic.c.diff?cvsroot=cluster&r1=1.1&r2=1.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_debug/main.c.diff?cvsroot=cluster&r1=1.1&r2=1.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_debug/ondisk.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_debug/readfile.c.diff?cvsroot=cluster&r1=1.1&r2=1.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_debug/util.c.diff?cvsroot=cluster&r1=1.1&r2=1.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_edit/ondisk.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_grow/ondisk.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_jadd/main.c.diff?cvsroot=cluster&r1=1.4&r2=1.5
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_jadd/ondisk.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_quota/check.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_quota/main.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_quota/names.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_quota/ondisk.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/counters.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/df.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/layout.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/misc.c.diff?cvsroot=cluster&r1=1.1&r2=1.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/ondisk.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/sb.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/tune.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_tool/util.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/init.d/Makefile.diff?cvsroot=cluster&r1=1.2&r2=1.3

--- cluster/gfs/gfs_debug/basic.c	2004/10/05 15:33:26	1.1
+++ cluster/gfs/gfs_debug/basic.c	2006/08/21 21:44:27	1.2
@@ -22,7 +22,7 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #include "linux_endian.h"
 
 #include "gfs_debug.h"
--- cluster/gfs/gfs_debug/main.c	2004/10/05 15:33:26	1.1
+++ cluster/gfs/gfs_debug/main.c	2006/08/21 21:44:27	1.2
@@ -22,7 +22,7 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #include "copyright.cf"
 
 #define EXTERN
--- cluster/gfs/gfs_debug/ondisk.c	2005/01/18 16:18:59	1.2
+++ cluster/gfs/gfs_debug/ondisk.c	2006/08/21 21:44:27	1.3
@@ -27,5 +27,5 @@
 #define RETURN(x, y) return y
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
--- cluster/gfs/gfs_debug/readfile.c	2004/10/05 15:33:26	1.1
+++ cluster/gfs/gfs_debug/readfile.c	2006/08/21 21:44:27	1.2
@@ -22,7 +22,7 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #include "linux_endian.h"
 
 #include "gfs_debug.h"
--- cluster/gfs/gfs_debug/util.c	2004/10/05 15:33:26	1.1
+++ cluster/gfs/gfs_debug/util.c	2006/08/21 21:44:27	1.2
@@ -22,7 +22,7 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #include "linux_endian.h"
 
 #include "gfs_debug.h"
--- cluster/gfs/gfs_edit/ondisk.c	2006/07/10 23:30:56	1.3
+++ cluster/gfs/gfs_edit/ondisk.c	2006/08/21 21:44:28	1.4
@@ -17,8 +17,8 @@
 #include "global.h"
 #include "linux_endian.h"
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
--- cluster/gfs/gfs_grow/ondisk.c	2005/01/18 16:19:00	1.3
+++ cluster/gfs/gfs_grow/ondisk.c	2006/08/21 21:44:28	1.4
@@ -17,7 +17,7 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #define printk printf
 #define pv(struct, member, fmt) printf("  "#member" = "fmt"\n", struct->member);
@@ -28,4 +28,4 @@
 #define RETURN(x, y) return y
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
--- cluster/gfs/gfs_jadd/main.c	2006/07/10 23:35:48	1.4
+++ cluster/gfs/gfs_jadd/main.c	2006/08/21 21:44:28	1.5
@@ -24,9 +24,9 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #define __user
-#include <linux/gfs_ioctl.h>
+#include "gfs_ioctl.h"
 #include "osi_list.h"
 #include "libgfs.h"
 
--- cluster/gfs/gfs_jadd/ondisk.c	2005/01/18 16:19:00	1.3
+++ cluster/gfs/gfs_jadd/ondisk.c	2006/08/21 21:44:28	1.4
@@ -17,7 +17,7 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #define printk printf
 #define pv(struct, member, fmt) printf("  "#member" = "fmt"\n", struct->member);
@@ -28,4 +28,4 @@
 #define RETURN(x, y) return y
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
--- cluster/gfs/gfs_quota/check.c	2005/01/04 10:07:09	1.2
+++ cluster/gfs/gfs_quota/check.c	2006/08/21 21:44:28	1.3
@@ -27,9 +27,9 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #define __user
-#include <linux/gfs_ioctl.h>
+#include "gfs_ioctl.h"
 #include "osi_list.h"
 
 #include "gfs_quota.h"
--- cluster/gfs/gfs_quota/main.c	2005/01/04 10:07:09	1.2
+++ cluster/gfs/gfs_quota/main.c	2006/08/21 21:44:28	1.3
@@ -29,9 +29,9 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 #define __user
-#include <linux/gfs_ioctl.h>
+#include "gfs_ioctl.h"
 
 #include "copyright.cf"
 
--- cluster/gfs/gfs_quota/names.c	2005/01/04 10:07:09	1.2
+++ cluster/gfs/gfs_quota/names.c	2006/08/21 21:44:28	1.3
@@ -29,7 +29,7 @@
 #include <stdint.h>
 #include <inttypes.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #include "gfs_quota.h"
 
--- cluster/gfs/gfs_quota/ondisk.c	2005/01/18 16:19:01	1.3
+++ cluster/gfs/gfs_quota/ondisk.c	2006/08/21 21:44:28	1.4
@@ -17,7 +17,7 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #define printk printf
 #define pv(struct, member, fmt) printf("  "#member" = "fmt"\n", struct->member);
@@ -28,4 +28,4 @@
 #define RETURN(x, y) return y
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
--- cluster/gfs/gfs_tool/counters.c	2005/01/04 10:07:10	1.2
+++ cluster/gfs/gfs_tool/counters.c	2006/08/21 21:44:28	1.3
@@ -25,7 +25,7 @@
 #include <errno.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
+#include "gfs_ioctl.h"
 #include "osi_list.h"
 
 #include "gfs_tool.h"
--- cluster/gfs/gfs_tool/df.c	2005/10/05 19:12:40	1.2
+++ cluster/gfs/gfs_tool/df.c	2006/08/21 21:44:28	1.3
@@ -25,8 +25,8 @@
 #include <errno.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
-#include <linux/gfs_ondisk.h>
+#include "gfs_ioctl.h"
+#include "gfs_ondisk.h"
 
 #include "gfs_tool.h"
 
--- cluster/gfs/gfs_tool/layout.c	2005/01/04 10:07:10	1.3
+++ cluster/gfs/gfs_tool/layout.c	2006/08/21 21:44:28	1.4
@@ -25,8 +25,8 @@
 #include <errno.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
-#include <linux/gfs_ondisk.h>
+#include "gfs_ioctl.h"
+#include "gfs_ondisk.h"
 
 #include "osi_list.h"
 #include "linux_endian.h"
--- cluster/gfs/gfs_tool/misc.c	2005/01/04 10:07:10	1.1
+++ cluster/gfs/gfs_tool/misc.c	2006/08/21 21:44:28	1.2
@@ -25,8 +25,8 @@
 #include <errno.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
-#include <linux/gfs_ondisk.h>
+#include "gfs_ioctl.h"
+#include "gfs_ondisk.h"
 
 #include "gfs_tool.h"
 
--- cluster/gfs/gfs_tool/ondisk.c	2005/01/18 16:19:01	1.3
+++ cluster/gfs/gfs_tool/ondisk.c	2006/08/21 21:44:28	1.4
@@ -17,7 +17,7 @@
 #include <inttypes.h>
 
 #include "linux_endian.h"
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #define printk printf
 #define pv(struct, member, fmt) \
@@ -29,6 +29,6 @@
 #define RETURN(x, y) return y
 
 #define WANT_GFS_CONVERSION_FUNCTIONS
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 
--- cluster/gfs/gfs_tool/sb.c	2005/01/04 10:07:10	1.2
+++ cluster/gfs/gfs_tool/sb.c	2006/08/21 21:44:28	1.3
@@ -24,7 +24,7 @@
 #include <limits.h>
 #include <errno.h>
 
-#include <linux/gfs_ondisk.h>
+#include "gfs_ondisk.h"
 
 #include "gfs_tool.h"
 
--- cluster/gfs/gfs_tool/tune.c	2005/01/04 10:07:10	1.3
+++ cluster/gfs/gfs_tool/tune.c	2006/08/21 21:44:28	1.4
@@ -25,7 +25,7 @@
 #include <errno.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
+#include "gfs_ioctl.h"
 
 #include "gfs_tool.h"
 
--- cluster/gfs/gfs_tool/util.c	2005/02/02 00:21:08	1.2
+++ cluster/gfs/gfs_tool/util.c	2006/08/21 21:44:28	1.3
@@ -26,8 +26,8 @@
 #include <libgen.h>
 
 #define __user
-#include <linux/gfs_ioctl.h>
-#include <linux/gfs_ondisk.h>
+#include "gfs_ioctl.h"
+#include "gfs_ondisk.h"
 
 #include "gfs_tool.h"
 
--- cluster/gfs/init.d/Makefile	2006/08/11 15:18:11	1.2
+++ cluster/gfs/init.d/Makefile	2006/08/21 21:44:28	1.3
@@ -21,8 +21,8 @@
 clean:
 
 install:
-	install -d ${DESTDIR}/etc/init.d
-	install ${TARGET} ${DESTDIR}/etc/init.d
+	install -d ${DESTDIR}/etc/rc.d/init.d
+	install ${TARGET} ${DESTDIR}/etc/rc.d/init.d
 
 uninstall:
 	${UNINSTALL} ${TARGET} ${DESTDIR}/etc/init.d




More information about the Cluster-devel mailing list