From 526bdbe9b91090e789512e2e03ce0a2e45340521 Mon Sep 17 00:00:00 2001 From: ericm Date: Wed, 17 Sep 2008 15:35:56 +0000 Subject: [PATCH] branch: HEAD change proc entry name srpc.xxx to srpc_xxx to satisfy 'lctl get_param'. b=14471 r=wangdi --- lustre/ptlrpc/sec_lproc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lustre/ptlrpc/sec_lproc.c b/lustre/ptlrpc/sec_lproc.c index e66524b..51bace7 100644 --- a/lustre/ptlrpc/sec_lproc.c +++ b/lustre/ptlrpc/sec_lproc.c @@ -159,18 +159,18 @@ int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev) return -EINVAL; } - rc = lprocfs_obd_seq_create(dev, "srpc.info", 0444, + rc = lprocfs_obd_seq_create(dev, "srpc_info", 0444, &sptlrpc_info_lprocfs_fops, dev); if (rc) { - CERROR("create proc entry srpc.info for %s: %d\n", + CERROR("create proc entry srpc_info for %s: %d\n", dev->obd_name, rc); return rc; } - rc = lprocfs_obd_seq_create(dev, "srpc.contexts", 0444, + rc = lprocfs_obd_seq_create(dev, "srpc_contexts", 0444, &sptlrpc_ctxs_lprocfs_fops, dev); if (rc) { - CERROR("create proc entry srpc.contexts for %s: %d\n", + CERROR("create proc entry srpc_contexts for %s: %d\n", dev->obd_name, rc); return rc; } -- 1.8.3.1