From: braam Date: Mon, 6 Oct 2003 08:48:25 +0000 (+0000) Subject: - fix 2072 with one extra argument to lvfs_fid2dentry X-Git-Tag: v1_7_0_51~2^9~263 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=c78f299cec9048d61c0172fb15d5b0a369da56e6;p=fs%2Flustre-release.git - fix 2072 with one extra argument to lvfs_fid2dentry - remove some assertions from start and stop transactions because logging is showing some nested transactions that the assertions can't handle. - updates to the network document with collected bits and pieces of router failover wisdom from Eric Barton. --- diff --git a/lustre/lvfs/lvfs_common.c b/lustre/lvfs/lvfs_common.c index cfaeb7f..6d18d0d 100644 --- a/lustre/lvfs/lvfs_common.c +++ b/lustre/lvfs/lvfs_common.c @@ -27,9 +27,9 @@ #include -struct dentry *lvfs_fid2dentry(struct obd_run_ctxt *ctxt, __u64 id, __u32 gen, +struct dentry *lvfs_fid2dentry(struct obd_run_ctxt *ctxt, __u64 id, __u32 gen, __u64 gr, void *data) { - return ctxt->cb_ops.l_fid2dentry(id, gen, data); + return ctxt->cb_ops.l_fid2dentry(id, gen, gr, data); } EXPORT_SYMBOL(lvfs_fid2dentry);