/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
* Copyright 2016 Nexenta Systems, Inc.
*/
/*
* datalink syseventd module.
*
* The purpose of this module is to identify all datalink related events,
* and react accordingly.
*/
#include <errno.h>
#include <string.h>
#include <libnvpair.h>
#include <librcm.h>
#include <libsysevent.h>
#include "sysevent_signal.h"
extern void syseventd_err_print(char *, ...);
struct event_list {
};
/* ARGSUSED */
static void *
{
(void) mutex_lock(&dl_mx);
continue;
}
(void) mutex_unlock(&dl_mx);
while (tmp_events != NULL) {
/*
* Ignore SIGCLD for the
* duration of the rcm_notify_event call.
*/
/*
* Send the PHYSLINK_NEW event to network_rcm to update
* the network devices cache accordingly.
*/
syseventd_err_print("datalink_mod: Can not "
ep = tmp_events;
}
(void) mutex_lock(&dl_mx);
}
(void) mutex_unlock(&dl_mx);
return (NULL);
}
/*ARGSUSED*/
static int
{
return (0);
}
return (EINVAL);
/*
* rcm_notify_event() needs to be called asynchronously otherwise when
* sysevent queue is full, deadlock will happen.
*/
return (ENOMEM);
/*
* queue up at the end of the event list and signal notify_thread to
* process it.
*/
(void) mutex_lock(&dl_mx);
(void) cond_signal(&dl_cv);
(void) mutex_unlock(&dl_mx);
return (0);
}
};
struct slm_mod_ops *
slm_init()
{
return (NULL);
&dl_notify_tid) != 0) {
(void) rcm_free_handle(rcm_hdl);
(void) mutex_destroy(&dl_mx);
(void) cond_destroy(&dl_cv);
return (NULL);
}
return (&datalink_mod_ops);
}
void
slm_fini()
{
(void) mutex_lock(&dl_mx);
dl_exiting = B_TRUE;
(void) cond_signal(&dl_cv);
(void) mutex_unlock(&dl_mx);
(void) mutex_destroy(&dl_mx);
(void) cond_destroy(&dl_cv);
(void) rcm_free_handle(rcm_hdl);
}