From: adilger Date: Tue, 14 Jan 2003 21:19:56 +0000 (+0000) Subject: Minor fixups from struct obd_uuid change. X-Git-Tag: v1_7_110~2^11~219 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=e7a19c96b2d4a688413ab7cabedbf5eeb8f1284c;p=fs%2Flustre-release.git Minor fixups from struct obd_uuid change. --- diff --git a/lustre/ptlbd/server.c b/lustre/ptlbd/server.c index 5141411..00c2376 100644 --- a/lustre/ptlbd/server.c +++ b/lustre/ptlbd/server.c @@ -58,6 +58,7 @@ static int ptlbd_sv_setup(struct obd_device *obddev, obd_count len, void *buf) struct obd_ioctl_data* data = buf; struct obd_uuid server_uuid; #endif + struct obd_uuid self_uuid = { "self" }; struct ptlbd_obd *ptlbd = &obddev->u.ptlbd; int rc; ENTRY; @@ -80,7 +81,7 @@ static int ptlbd_sv_setup(struct obd_device *obddev, obd_count len, void *buf) ptlbd->ptlbd_service = ptlrpc_init_svc(PTLBD_NEVENTS, PTLBD_NBUFS, PTLBD_BUFSIZE, PTLBD_MAXREQSIZE, PTLBD_REQUEST_PORTAL, - PTLBD_REPLY_PORTAL, "self", + PTLBD_REPLY_PORTAL, &self_uuid, ptlbd_parse_req, "ptlbd_sv"); if (!ptlbd->ptlbd_service) {