ソースを参照

[GFS2] lockproto api prefix

Use the gfs2_ prefix on the register/unregister functions for the lock
modules.  The gfs_ prefix was left from an old idea on how to share these
with gfs1.

Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
David Teigland 19 年 前
コミット
3120ec541e
3 ファイル変更8 行追加13 行削除
  1. 2 7
      fs/gfs2/lm_interface.h
  2. 4 4
      fs/gfs2/locking/dlm/main.c
  3. 2 2
      fs/gfs2/locking/nolock/main.c

+ 2 - 7
fs/gfs2/lm_interface.h

@@ -265,16 +265,11 @@ void __init gfs2_init_lmh(void);
 /*
  * Lock module bottom interface.  A lock module makes itself available to GFS
  * with these functions.
- *
- * For the time being, we copy the gfs1 lock module bottom interface so the
- * same lock modules can be used with both gfs1 and gfs2 (it won't be possible
- * to load both gfs1 and gfs2 at once.)  Eventually the lock modules will fork
- * for gfs1/gfs2 and this API can change to the gfs2_ prefix.
  */
 
-int gfs_register_lockproto(struct lm_lockops *proto);
+int gfs2_register_lockproto(struct lm_lockops *proto);
 
-void gfs_unregister_lockproto(struct lm_lockops *proto);
+void gfs2_unregister_lockproto(struct lm_lockops *proto);
 
 /*
  * Lock module top interface.  GFS calls these functions when mounting or

+ 4 - 4
fs/gfs2/locking/dlm/main.c

@@ -20,7 +20,7 @@ static int __init init_lock_dlm(void)
 {
 	int error;
 
-	error = gfs_register_lockproto(&gdlm_ops);
+	error = gfs2_register_lockproto(&gdlm_ops);
 	if (error) {
 		printk(KERN_WARNING "lock_dlm:  can't register protocol: %d\n",
 		       error);
@@ -29,14 +29,14 @@ static int __init init_lock_dlm(void)
 
 	error = gdlm_sysfs_init();
 	if (error) {
-		gfs_unregister_lockproto(&gdlm_ops);
+		gfs2_unregister_lockproto(&gdlm_ops);
 		return error;
 	}
 
 	error = gdlm_plock_init();
 	if (error) {
 		gdlm_sysfs_exit();
-		gfs_unregister_lockproto(&gdlm_ops);
+		gfs2_unregister_lockproto(&gdlm_ops);
 		return error;
 	}
 
@@ -52,7 +52,7 @@ static void __exit exit_lock_dlm(void)
 {
 	gdlm_plock_exit();
 	gdlm_sysfs_exit();
-	gfs_unregister_lockproto(&gdlm_ops);
+	gfs2_unregister_lockproto(&gdlm_ops);
 }
 
 module_init(init_lock_dlm);

+ 2 - 2
fs/gfs2/locking/nolock/main.c

@@ -233,7 +233,7 @@ static int __init init_nolock(void)
 {
 	int error;
 
-	error = gfs_register_lockproto(&nolock_ops);
+	error = gfs2_register_lockproto(&nolock_ops);
 	if (error) {
 		printk(KERN_WARNING
 		       "lock_nolock: can't register protocol: %d\n", error);
@@ -247,7 +247,7 @@ static int __init init_nolock(void)
 
 static void __exit exit_nolock(void)
 {
-	gfs_unregister_lockproto(&nolock_ops);
+	gfs2_unregister_lockproto(&nolock_ops);
 }
 
 module_init(init_nolock);