Searched refs:queues (Results 1 - 22 of 22) sorted by relevance

/freebsd-10.3-release/contrib/sendmail/contrib/
H A Dmovemail.pl3 # Move old mail messages between queues by calling re-mqueue.pl.
50 use vars qw(@queues $subqbase @ages $remqueue $lockfile);
53 if ($#queues < 1) {
54 print "$progname: there must be at least two queues\n";
58 if ($#ages != ($#queues - 1)) {
59 print "$progname: wrong number of ages (should be one less than number of queues)\n";
78 for (my $n = $#queues - 1; $n >= 0; $n--) {
90 opendir(DIR, $queues[$n])
91 or die "Can't open $queues[$n]: $!";
93 &$remsub("$queues[
[all...]
H A Dmovemail.conf8 @queues = qw(
15 # If used, queue directories are $queues[n]/$subqbase*
/freebsd-10.3-release/sys/dev/netmap/
H A Dif_ixl_netmap.h127 // XXX check that queues is set.
128 printf("queues is %p\n", vsi->queues);
129 if (vsi->queues) {
130 na.num_tx_desc = vsi->queues[0].num_desc;
131 na.num_rx_desc = vsi->queues[0].num_desc;
176 struct ixl_queue *que = &vsi->queues[kring->ring_id];
305 struct ixl_queue *que = &vsi->queues[kring->ring_id];
/freebsd-10.3-release/sys/dev/ixl/
H A Dif_ixlv.c404 device_printf(dev, "%s: setup queues failed!\n",
840 struct ixl_queue *que = vsi->queues;
889 /* Prepare the queues for operation */
902 /* Configure queues */
913 /* Enable queues */
1145 int rid, want, vectors, queues, available; local
1166 queues = (mp_ncpus > (available - 1)) ? (available - 1) : mp_ncpus;
1169 if ((ixlv_max_queues != 0) && (ixlv_max_queues <= queues))
1170 queues = ixlv_max_queues;
1173 if (queues > rss_getnumbucket
2791 struct ixl_queue *queues = vsi->queues; local
[all...]
H A Dif_ixl.c285 ** number of queues will be calculated based
631 /* Set up VSI and queues */
753 struct ixl_queue *que = vsi->queues;
1287 struct ixl_queue *que = vsi->queues;
1328 /* And now the queues */
1801 struct ixl_queue *que = vsi->queues;
1815 ** Check status of the queues
1821 /* Any queues with outstanding work get a sw irq */
1848 /* Only reinit if all queues show hung */
1951 struct ixl_queue *que = vsi->queues;
2095 int rid, want, vectors, queues, available; local
3243 struct ixl_queue *queues = vsi->queues; local
[all...]
H A Dixlvc.c365 ** Request that the PF set up our queues.
372 struct ixl_queue *que = vsi->queues;
424 ** Request that the PF enable all of our queues.
441 ** Request that the PF disable all of our queues.
458 ** Request that the PF map queues to interrupt vectors. Misc causes, including
467 struct ixl_queue *que = vsi->queues;
810 tx_discards += sc->vsi.queues[i].txr.br->br_drops;
H A Dixl.h508 struct ixl_queue *queues; /* head of queues */ member in struct:ixl_vsi
H A Dixl_txrx.c103 ** on stalled queues.
108 que = &vsi->queues[i];
184 struct ixl_queue *que = &vsi->queues[i];
/freebsd-10.3-release/sys/geom/sched/
H A Dgs_rr.c32 * A round-robin (RR) anticipatory scheduler, with per-client queues.
49 * Scheduling is made looking at the status of all queues,
122 /* Default quantum for RR between queues. */
126 * Per device descriptor, holding the Round Robin list of queues
143 int sc_nqueues; /* number of queues */
162 int queues; /* total number of queues */ member in struct:g_rr_params
205 SYSCTL_INT(_kern_geom_sched_rr, OID_AUTO, queues, CTLFLAG_RD,
206 &me.queues, 0, "Total rr queues");
[all...]
/freebsd-10.3-release/sys/netpfil/pf/
H A Dpf_ruleset.c151 TAILQ_INIT(&ruleset->rules[i].queues[0]);
152 TAILQ_INIT(&ruleset->rules[i].queues[1]);
153 ruleset->rules[i].active.ptr = &ruleset->rules[i].queues[0];
154 ruleset->rules[i].inactive.ptr = &ruleset->rules[i].queues[1];
/freebsd-10.3-release/sys/dev/ixgbe/
H A Dif_ixv.c468 struct ix_queue *que = adapter->queues;
807 ixv_rearm_queues(struct adapter *adapter, u64 queues) argument
809 u32 mask = (IXGBE_EIMS_RTX_QUEUE & queues);
1109 struct ix_queue *que = adapter->queues;
1110 u64 queues = 0; local
1121 ** Check the TX queues status
1122 ** - mark hung queues so we don't schedule on them
1123 ** - watchdog only if all queues show hung
1126 /* Keep track of queues with work for soft irq */
1128 queues |
[all...]
H A Dif_ix.c335 "Number of queues to configure up to a mximum of 8,"
694 struct ix_queue *que = adapter->queues;
1154 /* Now enable all the queues */
2150 struct ix_queue *que = adapter->queues;
2151 u64 queues = 0; local
2165 ** Check the TX queues status
2166 ** - mark hung queues so we don't schedule on them
2167 ** - watchdog only if all queues show hung
2170 /* Keep track of queues with work for soft irq */
2172 queues |
2629 int rid, want, queues, msgs; local
5266 ixgbe_rearm_queues(struct adapter *adapter, u64 queues) argument
[all...]
H A Dix_txrx.c212 que = &adapter->queues[i];
1212 que = &adapter->queues[txr->me];
2116 if (!(adapter->queues =
2153 * Now set up the TX queues, txconf is needed to handle the
2204 * Next the RX queues...
2247 que = &adapter->queues[i];
2266 free(adapter->queues, M_DEVBUF);
H A Dixgbe.h539 struct ix_queue *queues; member in struct:adapter
812 * reserve 1 VM's worth of queues for the PF.
/freebsd-10.3-release/usr.sbin/bhyve/
H A Dvirtio.c61 struct vqueue_info *queues)
71 vs->vs_queues = queues;
73 queues[i].vq_vs = vs;
74 queues[i].vq_num = i;
79 * Reset device (device-wide). This erases all queues, i.e.,
80 * all the queues become invalid (though we don't wipe out the
59 vi_softc_linkup(struct virtio_softc *vs, struct virtio_consts *vc, void *dev_softc, struct pci_devinst *pi, struct vqueue_info *queues) argument
H A Dvirtio.h41 * A virtual device has zero or more "virtual queues" (virtqueue).
162 * The number of queues is determinable via the PCI config space
170 * queue. (The number of possible queues depends on the virtual
251 #define VTCFG_ISR_QUEUES 0x01 /* re-scan queues */
287 * queues and some size (possibly 0) of configuration-space
346 int vc_nvq; /* number of virtual queues */
449 struct vqueue_info *queues);
/freebsd-10.3-release/sys/dev/e1000/
H A Dif_igb.c327 "Number of queues to configure, 0 indicates autoconfigure");
330 ** Global variable to store last used CPU when binding queues
927 que = &adapter->queues[i];
1438 struct igb_queue *que = adapter->queues;
1507 que = &adapter->queues[i];
2052 struct igb_queue *que = adapter->queues;
2062 ** Check the TX queues status
2064 ** - watchdog only if all queues show hung
2325 struct igb_queue *que = adapter->queues;
2385 struct igb_queue *que = adapter->queues;
2686 int bar, want, queues, msgs, maxqueues; local
[all...]
H A Dif_igb.h494 struct igb_queue *queues; member in struct:adapter
/freebsd-10.3-release/sbin/pfctl/
H A Dparse.y204 } *queues = NULL;
236 struct node_qassign queues;
1470 yyerror("no child queues specified");
2202 if ($9.queues.qname != NULL) {
2203 if (strlcpy(r.qname, $9.queues.qname,
2209 free($9.queues.qname);
2211 if ($9.queues.pqname != NULL) {
2212 if (strlcpy(r.pqname, $9.queues.pqname,
2218 free($9.queues.pqname);
2332 if (filter_opts.queues
[all...]
/freebsd-10.3-release/sys/dev/mpr/
H A Dmpr.c492 * Size the queues. Since the reply queues always need one free
531 "queues with error %d\n", __func__, error);
535 panic("%s failed to alloc queues with error "
541 /* Always initialize the queues */
569 * IOC treats the queues as full if both are set to the same value.
1073 uint8_t *queues; local
1085 * These two queues are allocated together for simplicity.
1104 device_printf(sc->mpr_dev, "Cannot allocate queues DMA tag\n");
1107 if (bus_dmamem_alloc(sc->queues_dmat, (void **)&queues, BUS_DMA_NOWAI
[all...]
/freebsd-10.3-release/sys/dev/mps/
H A Dmps.c484 * Size the queues. Since the reply queues always need one free
523 "queues with error %d\n", __func__, error);
527 panic("%s failed to alloc queues with error "
533 /* Always initialize the queues */
561 * IOC treats the queues as full if both are set to the same value.
1069 uint8_t *queues; local
1081 * These two queues are allocated together for simplicity.
1100 device_printf(sc->mps_dev, "Cannot allocate queues DMA tag\n");
1103 if (bus_dmamem_alloc(sc->queues_dmat, (void **)&queues, BUS_DMA_NOWAI
[all...]
/freebsd-10.3-release/sys/net/
H A Dpfvar.h893 struct pf_rulequeue queues[2]; member in struct:pf_ruleset::__anon10989

Completed in 402 milliseconds