cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
From: fabbione@sourceware.org <fabbione@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/gfs-kernel/src/gfs eaops.c
Date: 30 Jan 2008 08:32:41 -0000	[thread overview]
Message-ID: <20080130083241.23121.qmail@sourceware.org> (raw)

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	fabbione at sourceware.org	2008-01-30 08:32:40

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

Log message:
	Remove unrequire functions. This follow gfs2 changes

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/eaops.c.diff?cvsroot=cluster&r1=1.8&r2=1.9

--- cluster/gfs-kernel/src/gfs/eaops.c	2008/01/30 06:37:53	1.8
+++ cluster/gfs-kernel/src/gfs/eaops.c	2008/01/30 08:32:28	1.9
@@ -61,48 +61,6 @@
 }
 
 /**
- * user_eo_get -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-user_eo_get(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_get_i(ip, er);
-}
-
-/**
- * user_eo_set -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-user_eo_set(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_set_i(ip, er);
-}
-
-/**
- * user_eo_remove -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-user_eo_remove(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_remove_i(ip, er);
-}
-
-/**
  * system_eo_get -
  * @ip:
  * @er:
@@ -198,52 +156,10 @@
 	return gfs_ea_remove_i(ip, er);	
 }
 
-/**
- * security_eo_get -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-security_eo_get(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_get_i(ip, er);
-}
-
-/**
- * security_eo_set -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-security_eo_set(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_set_i(ip, er);
-}
-
-/**
- * security_eo_remove -
- * @ip:
- * @er:
- *
- * Returns: errno
- */
-
-static int
-security_eo_remove(struct gfs_inode *ip, struct gfs_ea_request *er)
-{
-	return gfs_ea_remove_i(ip, er);
-}
-
 struct gfs_eattr_operations gfs_user_eaops = {
-	.eo_get = user_eo_get,
-	.eo_set = user_eo_set,
-	.eo_remove = user_eo_remove,
+	.eo_get = gfs_ea_get_i,
+	.eo_set = gfs_ea_set_i,
+	.eo_remove = gfs_ea_remove_i,
 	.eo_name = "user",
 };
 
@@ -255,9 +171,9 @@
 };
 
 struct gfs_eattr_operations gfs_security_eaops = {
-	.eo_get = security_eo_get,
-	.eo_set = security_eo_set,
-	.eo_remove = security_eo_remove,
+	.eo_get = gfs_ea_get_i,
+	.eo_set = gfs_ea_set_i,
+	.eo_remove = gfs_ea_remove_i,
 	.eo_name = "security",
 };
 



             reply	other threads:[~2008-01-30  8:32 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-30  8:32 fabbione [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-12-04 19:30 [Cluster-devel] cluster/gfs-kernel/src/gfs eaops.c rohara
2007-12-04 19:28 rohara
2006-11-20 19:15 rohara

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080130083241.23121.qmail@sourceware.org \
    --to=fabbione@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).