cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2008-02-05 21:12 rpeterso
  0 siblings, 0 replies; 8+ messages in thread
From: rpeterso @ 2008-02-05 21:12 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	rpeterso at sourceware.org	2008-02-05 21:12:52

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Resolves: 430154: gfs_tool doesn't recognize GFS file system
	Forgot to take the & off the ioctl for get_file_meta_quota.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.13.2.6&r2=1.13.2.7

--- cluster/gfs-kernel/src/gfs/ioctl.c	2008/01/24 20:51:46	1.13.2.6
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2008/02/05 21:12:52	1.13.2.7
@@ -1490,7 +1490,7 @@
 	else if (strcmp(arg0, "get_file_meta") == 0)
 		error = gi_get_file_meta(ip, gi);
 	else if (strcmp(arg0, "get_file_meta_quota") == 0)
-		error = gi_get_file_meta(ip->i_sbd->sd_qinode, &gi);
+		error = gi_get_file_meta(ip->i_sbd->sd_qinode, gi);
 	else if (strcmp(arg0, "do_file_flush") == 0)
 		error = gi_do_file_flush(ip, gi);
 	else if (strcmp(arg0, "get_hfile_stat") == 0)



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2008-01-28  6:42 fabbione
  0 siblings, 0 replies; 8+ messages in thread
From: fabbione @ 2008-01-28  6:42 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	fabbione at sourceware.org	2008-01-28 06:42:35

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Fix build warning

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&r1=1.18&r2=1.19

--- cluster/gfs-kernel/src/gfs/ioctl.c	2008/01/24 20:54:31	1.18
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2008/01/28 06:42:35	1.19
@@ -1490,7 +1490,7 @@
 	else if (strcmp(arg0, "get_file_meta") == 0)
 		error = gi_get_file_meta(ip, gi);
 	else if (strcmp(arg0, "get_file_meta_quota") == 0)
-		error = gi_get_file_meta(ip->i_sbd->sd_qinode, &gi);
+		error = gi_get_file_meta(ip->i_sbd->sd_qinode, gi);
 	else if (strcmp(arg0, "do_file_flush") == 0)
 		error = gi_do_file_flush(ip, gi);
 	else if (strcmp(arg0, "get_hfile_stat") == 0)



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2008-01-24 18:30 adas
  0 siblings, 0 replies; 8+ messages in thread
From: adas @ 2008-01-24 18:30 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	adas at sourceware.org	2008-01-24 18:30:18

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	fix for bug 430134 - Added functionality to GFS_IOCTL_SUPER to provide metadata of the hidden quota file. This allows the userland tool gfs_quota to perform efficient list operations (bz 430133).

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.13.2.4&r2=1.13.2.5

--- cluster/gfs-kernel/src/gfs/ioctl.c	2007/06/19 14:47:07	1.13.2.4
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2008/01/24 18:30:17	1.13.2.5
@@ -1482,6 +1482,8 @@
 		error = gi_set_file_flag(ip, &gi);
 	else if (strcmp(arg0, "get_file_meta") == 0)
 		error = gi_get_file_meta(ip, &gi);
+	else if (strcmp(arg0, "get_file_meta_quota") == 0)
+		error = gi_get_file_meta(ip->i_sbd->sd_qinode, &gi);
 	else if (strcmp(arg0, "do_file_flush") == 0)
 		error = gi_do_file_flush(ip, &gi);
 	else if (strcmp(arg0, "get_hfile_stat") == 0)



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2007-06-17  5:31 wcheng
  0 siblings, 0 replies; 8+ messages in thread
From: wcheng @ 2007-06-17  5:31 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	wcheng at sourceware.org	2007-06-17 05:31:51

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Bugzilla 239729:
	
	Continue bugzilla 239720 check-in. The bugzilla intends to improve GFS
	slab cache consumption issue. This check-in fixes a white space error.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.13.2.2&r2=1.13.2.3

--- cluster/gfs-kernel/src/gfs/ioctl.c	2007/06/17 05:16:52	1.13.2.2
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2007/06/17 05:31:51	1.13.2.3
@@ -458,7 +458,7 @@
         gfs_printf("logd_secs %u\n", gt->gt_logd_secs);
         gfs_printf("quotad_secs %u\n", gt->gt_quotad_secs);
         gfs_printf("inoded_secs %u\n", gt->gt_inoded_secs);
-	gfs_printf("glock_purge %u\n", gt->gt_glock_purge);
+        gfs_printf("glock_purge %u\n", gt->gt_glock_purge);
         gfs_printf("quota_simul_sync %u\n", gt->gt_quota_simul_sync);
         gfs_printf("quota_warn_period %u\n", gt->gt_quota_warn_period);
         gfs_printf("atime_quantum %u\n", gt->gt_atime_quantum);



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2006-11-13 22:48 rohara
  0 siblings, 0 replies; 8+ messages in thread
From: rohara @ 2006-11-13 22:48 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	STABLE
Changes by:	rohara at sourceware.org	2006-11-13 22:48:07

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Include sd_freeze_count in counters output.
	This will allow users to see the freeze count via gfs_tool counters.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=STABLE&r1=1.7.6.1.2.1&r2=1.7.6.1.2.2

--- cluster/gfs-kernel/src/gfs/ioctl.c	2005/10/24 15:53:27	1.7.6.1.2.1
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2006/11/13 22:48:06	1.7.6.1.2.2
@@ -345,6 +345,8 @@
 		   atomic_read(&sdp->sd_glock_count));
 	gfs_printf("sd_glock_held_count:locks held::%d\n",
 		   atomic_read(&sdp->sd_glock_held_count));
+	gfs_printf("sd_freeze_count:freeze count::%d\n",
+		   sdp->sd_freeze_count);
 	gfs_printf("sd_inode_count:incore inodes::%d\n",
 		   atomic_read(&sdp->sd_inode_count));
 	gfs_printf("sd_bufdata_count:metadata buffers::%d\n",



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2006-11-13 22:47 rohara
  0 siblings, 0 replies; 8+ messages in thread
From: rohara @ 2006-11-13 22:47 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	rohara at sourceware.org	2006-11-13 22:47:48

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Include sd_freeze_count in counters output.
	This will allow users to see the freeze count via gfs_tool counters.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&r1=1.13&r2=1.14

--- cluster/gfs-kernel/src/gfs/ioctl.c	2006/10/17 19:02:35	1.13
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2006/11/13 22:47:48	1.14
@@ -345,6 +345,8 @@
 		   atomic_read(&sdp->sd_glock_count));
 	gfs_printf("sd_glock_held_count:locks held::%d\n",
 		   atomic_read(&sdp->sd_glock_held_count));
+	gfs_printf("sd_freeze_count:freeze count::%d\n",
+		   sdp->sd_freeze_count);
 	gfs_printf("sd_inode_count:incore inodes::%d\n",
 		   atomic_read(&sdp->sd_inode_count));
 	gfs_printf("sd_bufdata_count:metadata buffers::%d\n",



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2006-11-13 19:28 rohara
  0 siblings, 0 replies; 8+ messages in thread
From: rohara @ 2006-11-13 19:28 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	rohara at sourceware.org	2006-11-13 19:28:36

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Include sd_freeze_count in counters output.
	This will allow users to see the freeze count via gfs_tool counters.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.13&r2=1.13.2.1

--- cluster/gfs-kernel/src/gfs/ioctl.c	2006/10/17 19:02:35	1.13
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2006/11/13 19:28:36	1.13.2.1
@@ -345,6 +345,8 @@
 		   atomic_read(&sdp->sd_glock_count));
 	gfs_printf("sd_glock_held_count:locks held::%d\n",
 		   atomic_read(&sdp->sd_glock_held_count));
+	gfs_printf("sd_freeze_count:freeze count::%d\n",
+		   sdp->sd_freeze_count);
 	gfs_printf("sd_inode_count:incore inodes::%d\n",
 		   atomic_read(&sdp->sd_inode_count));
 	gfs_printf("sd_bufdata_count:metadata buffers::%d\n",



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c
@ 2006-11-13 19:25 rohara
  0 siblings, 0 replies; 8+ messages in thread
From: rohara @ 2006-11-13 19:25 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL4
Changes by:	rohara at sourceware.org	2006-11-13 19:25:46

Modified files:
	gfs-kernel/src/gfs: ioctl.c 

Log message:
	Include sd_freeze_count in counters output.
	This will allow users to see the freeze count via gfs_tool counters.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ioctl.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.7.2.3&r2=1.7.2.4

--- cluster/gfs-kernel/src/gfs/ioctl.c	2005/12/16 06:08:39	1.7.2.3
+++ cluster/gfs-kernel/src/gfs/ioctl.c	2006/11/13 19:25:46	1.7.2.4
@@ -345,6 +345,8 @@
 		   atomic_read(&sdp->sd_glock_count));
 	gfs_printf("sd_glock_held_count:locks held::%d\n",
 		   atomic_read(&sdp->sd_glock_held_count));
+	gfs_printf("sd_freeze_count:freeze count::%d\n",
+		   sdp->sd_freeze_count);
 	gfs_printf("sd_inode_count:incore inodes::%d\n",
 		   atomic_read(&sdp->sd_inode_count));
 	gfs_printf("sd_bufdata_count:metadata buffers::%d\n",



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-02-05 21:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-05 21:12 [Cluster-devel] cluster/gfs-kernel/src/gfs ioctl.c rpeterso
  -- strict thread matches above, loose matches on Subject: below --
2008-01-28  6:42 fabbione
2008-01-24 18:30 adas
2007-06-17  5:31 wcheng
2006-11-13 22:48 rohara
2006-11-13 22:47 rohara
2006-11-13 19:28 rohara
2006-11-13 19:25 rohara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).