* [PATCH] Declare modalias for nfs4filelayout to support auto-loading of modules.
@ 2011-05-16 1:10 NeilBrown
0 siblings, 0 replies; only message in thread
From: NeilBrown @ 2011-05-16 1:10 UTC (permalink / raw)
To: trond.myklebust; +Cc: linux-nfs
Hi,
I had a brief look at configuring pnfs recently and wondered why
http://wiki.linux-nfs.org/wiki/index.php/PNFS_Setup_Instructions
suggested that the layout module should be explicitly 'modprobe'd when that
sort of thing is normally automatic.
pnfs.c makes the appropriate 'request-module' call, but there is no
MODULE_ALIAS to link the relevant module with the requested name.
This patch adds the required MODULE_ALIAS. It has only been compile-tested
(my interest is as yet only theoretical :-)
Thanks,
NeilBrown
>From 1f87c7a913fd7d4caf8b464761e44d109512aad6 Mon Sep 17 00:00:00 2001
From: NeilBrown <neilb@suse.de>
Date: Mon, 16 May 2011 10:55:57 +1000
Subject: [PATCH] Declare modalias for nfs4filelayout to support auto-loading of modules.
pnfs.c uses 'request_module' with the name
nfs-layouttype4-1
when it actually wants
nfs4filelayout
so give the latter a "MODULE_ALIAS" so it can be found with the former
name.
This avoids needing to add an alais to /etc/modprobe.d/...
Signed-off-by: NeilBrown <neilb@suse.de>
---
fs/nfs/nfs4filelayout.c | 1 +
fs/nfs/pnfs.h | 2 ++
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c
index be79dc9..86c2f5f 100644
--- a/fs/nfs/nfs4filelayout.c
+++ b/fs/nfs/nfs4filelayout.c
@@ -873,6 +873,7 @@ static struct pnfs_layoutdriver_type filelayout_type = {
.read_pagelist = filelayout_read_pagelist,
.write_pagelist = filelayout_write_pagelist,
};
+NFSV4_LAYOUT_MODULE_ALIAS(LAYOUT_NFSV4_1_FILES);
static int __init nfs4filelayout_init(void)
{
diff --git a/fs/nfs/pnfs.h b/fs/nfs/pnfs.h
index 0c015ba..1c2a1f1 100644
--- a/fs/nfs/pnfs.h
+++ b/fs/nfs/pnfs.h
@@ -55,6 +55,8 @@ enum pnfs_try_status {
#ifdef CONFIG_NFS_V4_1
#define LAYOUT_NFSV4_1_MODULE_PREFIX "nfs-layouttype4"
+#define NFSV4_LAYOUT_MODULE_ALIAS(id) \
+ MODULE_ALIAS(LAYOUT_NFSV4_1_MODULE_PREFIX "-" #id)
enum {
NFS_LAYOUT_RO_FAILED = 0, /* get ro layout failed stop trying */
--
1.7.3.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-05-16 1:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 1:10 [PATCH] Declare modalias for nfs4filelayout to support auto-loading of modules NeilBrown
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).