HomeSort by relevance Sort by last modified time
    Searched refs:smp (Results 1 - 25 of 49) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/sp-monitor/
sp_monitor.c 68 sp_monitor_t *smp = fmd_hdl_getspecific(hdl); local
81 smp->sm_seconds = -1U;
82 smp->sm_generation = -1U;
90 sp_monitor_t *smp = fmd_hdl_getspecific(hdl); local
93 if (ipmi_sunoem_uptime(smp->sm_hdl, &seconds, &generation) != 0) {
99 ipmi_errmsg(smp->sm_hdl));
108 if (seconds < smp->sm_seconds ||
109 generation != smp->sm_generation ||
110 smp->sm_seconds == 0)
113 smp->sm_seconds = seconds
140 sp_monitor_t *smp; local
199 sp_monitor_t *smp = fmd_hdl_getspecific(hdl); local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtnfctl/
prb_shmem.c 44 static boolean_t getspin(volatile shmem_msg_t *smp);
53 volatile shmem_msg_t *smp; local
63 smp = (shmem_msg_t *) mmap(0, sizeof (struct shmem_msg),
66 if (smp == (struct shmem_msg *) - 1) {
73 smp->spin = B_TRUE;
75 *ret_val = smp;
84 getspin(volatile shmem_msg_t *smp)
86 return (smp->spin);
90 prb_shmem_wait(volatile shmem_msg_t *smp)
95 while (getspin(smp));
    [all...]
prb_child.c 55 static prb_status_t sync_child(int pid, volatile shmem_msg_t *smp,
74 volatile shmem_msg_t *smp; local
77 prbstat = prb_shmem_init(&smp);
166 (void) prb_shmem_wait(smp);
197 prbstat = sync_child(childpid, smp, ret_val);
222 sync_child(int childpid, volatile shmem_msg_t *smp, prb_proc_ctl_t **proc_pp)
260 prbstat = prb_shmem_clear(smp);
294 prbstat = prb_shmem_free(smp);
prb_proc_int.h 89 prb_status_t prb_shmem_free(volatile shmem_msg_t *smp);
  /onnv/onnv-gate/usr/src/uts/common/vm/
seg_map.c 133 size_t len, enum seg_rw rw, struct smap *smp);
134 static void segmap_smapadd(struct smap *smp);
135 static struct smap *segmap_hashin(struct smap *smp, struct vnode *vp,
137 static void segmap_hashout(struct smap *smp);
252 #define SMP2SMF(smp) (&smd_free[(smp - smd_smap) & smd_freemsk])
253 #define SMP2SMF_NDX(smp) (ushort_t)((smp - smd_smap) & smd_freemsk)
255 #define SMAPMTX(smp) (&smp->sm_mtx
302 struct smap *smp; local
590 struct smap *smp; local
776 struct smap *smp; local
1188 struct smap *smp, *first; local
1383 struct smap *smp; local
1494 struct smap *smp; local
1606 struct smap *smp, *nsmp; local
1980 struct smap *smp; local
2133 struct smap *smp, *smp_end; local
2281 struct smap *smp; local
    [all...]
seg_map.h 92 #define GET_KPME(smp) (&(smp)->sm_kpme)
97 #define GET_KPME(smp) ((struct kpme *)NULL)
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWsmpd/
postinstall 47 if installed smp; then
48 echo "smp already installed" || EXIT=1
51 add_drv ${BASEDIR_OPT} -m '* 0644 root sys' smp || \
prototype_i386 47 # Serial SCSI Management Protocol (SMP) Driver
49 f none kernel/drv/smp 0755 root sys
50 f none kernel/drv/amd64/smp 0755 root sys
postremove 47 if grep "\<smp\>" $BASEDIR/etc/name_to_major > /dev/null 2>&1
49 $REM_DRV smp || EXIT=1
prototype_sparc 47 # Serial SCSI Management Protocol (SMP) Driver
49 f none kernel/drv/sparcv9/smp 0755 root sys
prototype_com 50 f none kernel/drv/smp.conf 0644 root sys
  /onnv/onnv-gate/usr/src/uts/common/inet/ip/
ip_srcid.c 160 srcid_map_t *smp; local
170 smp = *smpp;
171 if (smp == NULL) {
178 ASSERT(smp->sm_refcnt != 0);
179 smp->sm_refcnt--;
180 if (smp->sm_refcnt != 0) {
185 *smpp = smp->sm_next;
187 smp->sm_next = NULL;
188 kmem_free(smp, sizeof (srcid_map_t));
201 srcid_map_t *smp; local
232 srcid_map_t *smp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/scsi/impl/
smp_transport.h 40 * Properties for smp device
42 #define SMP_PROP "smp-device"
43 #define SMP_WWN "smp-wwn"
78 smp_device_t *smp);
84 smp_device_t *smp);
94 smp_hba_tran_t *smp);
96 extern void smp_hba_tran_free(smp_hba_tran_t *smp);
  /onnv/onnv-gate/usr/src/uts/common/inet/sctp/
sctp_heartbeat.c 45 mblk_t *smp; local
89 smp = sctp_make_mp(sctp, fp, len);
90 if (smp == NULL) {
95 cp = (sctp_chunk_hdr_t *)smp->b_wptr;
103 smp->b_wptr += len;
107 sctp_set_iplen(sctp, smp, fp->ixa);
108 (void) conn_ip_output(smp, fp->ixa);
sctp_shutdown.c 52 mblk_t *smp; local
101 smp = allocb(sizeof (*sch) + sizeof (*ctsn), BPRI_MED);
102 if (smp == NULL) {
106 linkb(sendmp, smp);
108 sch = (sctp_chunk_hdr_t *)smp->b_rptr;
109 smp->b_wptr = smp->b_rptr + sizeof (*sch) + sizeof (*ctsn);
sctp_input.c 1660 mblk_t *smp; local
1759 mblk_t *smp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/smp/
Makefile 30 # This makefile drives the production of the smp driver.
42 MODULE = smp
  /onnv/onnv-gate/usr/src/uts/sparc/smp/
Makefile 30 # This makefile drives the production of the smp driver.
42 MODULE = smp
  /onnv/onnv-gate/usr/src/uts/common/os/
msg.c 666 struct msg *smp; /* ptr to best msg on q */ local
695 smp = msgrcv_lookup(qp, msgtyp);
697 if (smp) {
701 if ((smp->msg_flags & MSG_RCVCOPY) == 0) {
703 long copy_type = smp->msg_type;
709 smp, msgp, msgflg);
803 size_t msgsz, struct msg *smp, struct ipcmsgbuf *msgp, int msgflg)
811 if (msgsz < smp->msg_size) {
818 xtsz = smp->msg_size;
827 ASSERT((smp->msg_flags & MSG_RCVCOPY) == 0)
880 struct msg *smp = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/sun4v/platform-mem/
mem_mdesc.c 260 mem_seg_map_t *smp; local
392 smp = topo_mod_zalloc(mod, sizeof (mem_seg_map_t));
393 smp->sm_next = mem->mem_seg;
394 mem->mem_seg = smp;
395 smp->sm_base = base;
396 smp->sm_size = size;
399 smp->sm_grp = create_grp(mod, bl, bc,
402 smp->sm_grp = gmp;
  /onnv/onnv-gate/usr/src/uts/common/io/
l_strplumb.c 153 * Optionally send data (if smp set) and optionally receive data (if rmp is
158 kstr_msg(vnode_t *vp, mblk_t *smp, mblk_t **rmp, timestruc_t *timeo)
170 if (smp == NULL && rmp == NULL)
173 if (smp != NULL) {
175 (void) kstrputmsg(vp, smp, NULL, 0, 0,
  /onnv/onnv-gate/usr/src/uts/sun4u/cpu/
mach_cpu_module.c 285 prefetch_smap_w(void *smp)
  /onnv/onnv-gate/usr/src/uts/common/io/mega_sas/
megaraid_sas.c 3786 struct megasas_smp_frame *smp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/mr_sas/
mr_sas.c 3799 struct mrsas_smp_frame *smp; local
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
Makefile.solaris 178 diskless_exec-smp-imps.o \
389 pre_stage2_exec-smp-imps.o \
616 size_test smp-imps.c smp-imps.h stage1_5.c stage2.c \

Completed in 3910 milliseconds

1 2