Date: Tue, 14 Oct 2008 20:18:57 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r183895 - head/sys/dev/sym Message-ID: <200810142018.m9EKIvZw015293@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Tue Oct 14 20:18:57 2008 New Revision: 183895 URL: http://svn.freebsd.org/changeset/base/183895 Log: Use xpt_register_async() in order to remove code duplication. MFC after: 1 month Modified: head/sys/dev/sym/sym_hipd.c Modified: head/sys/dev/sym/sym_hipd.c ============================================================================== --- head/sys/dev/sym/sym_hipd.c Tue Oct 14 19:58:26 2008 (r183894) +++ head/sys/dev/sym/sym_hipd.c Tue Oct 14 20:18:57 2008 (r183895) @@ -8974,7 +8974,6 @@ static int sym_cam_attach(hcb_p np) struct cam_devq *devq = NULL; struct cam_sim *sim = NULL; struct cam_path *path = NULL; - struct ccb_setasync csa; int err; /* @@ -9021,12 +9020,9 @@ static int sym_cam_attach(hcb_p np) /* * Establish our async notification handler. */ - xpt_setup_ccb(&csa.ccb_h, np->path, 5); - csa.ccb_h.func_code = XPT_SASYNC_CB; - csa.event_enable = AC_LOST_DEVICE; - csa.callback = sym_async; - csa.callback_arg = np->sim; - xpt_action((union ccb *)&csa); + if (xpt_register_async(AC_LOST_DEVICE, sym_async, sim, path) != + CAM_REQ_CMP) + goto fail; /* * Start the chip now, without resetting the BUS, since
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810142018.m9EKIvZw015293>