Searched refs:maxbase (Results 1 - 10 of 10) sorted by relevance

/barrelfish-master/usr/echoserver/
H A Dmain.c22 static uint64_t minbase = -1, maxbase = -1; variable
56 maxbase = atol(argv[i] + strlen("affinitymax="));
57 printf("maxbase = %"PRIu64"\n", maxbase);
70 if ((minbase != -1) && (maxbase != -1)) {
71 ram_set_affinity(minbase, maxbase);
H A Dudpechoserver.c29 extern uint64_t minbase, maxbase;
H A Dtcpechoserver.c32 extern uint64_t minbase, maxbase;
79 minbase, maxbase);
/barrelfish-master/usr/netd/
H A Dmain.c56 uint64_t minbase = -1, maxbase = -1; local
76 maxbase = atol(argv[i] + strlen("affinitymax="));
77 NETD_DEBUG("maxbase = %" PRIu64 "\n", maxbase);
127 if ((minbase != -1) && (maxbase != -1)) {
128 ram_set_affinity(minbase, maxbase);
/barrelfish-master/usr/device_managers/net_gen_dev/
H A DNGD_mng.c49 uint64_t minbase = -1, maxbase = -1; local
61 maxbase = atol(argv[i] + strlen("affinitymax="));
62 NGKDM_DEBUG("maxbase = %" PRIu64 "\n", maxbase);
/barrelfish-master/usr/bench/net_latency/elb/
H A Dbenchmark.c42 static uint64_t maxbase = -1ULL; variable
206 maxbase = atol(arg + strlen("affinitymax="));
216 if (!affinity_set && minbase != -1ULL && maxbase != -1ULL) {
217 ram_set_affinity(minbase, maxbase);
H A Dbenchmark_tcp.c35 static uint64_t maxbase = -1ULL; variable
276 maxbase = atol(arg + strlen("affinitymax="));
290 if (!affinity_set && minbase != -1ULL && maxbase != -1ULL) {
291 ram_set_affinity(minbase, maxbase);
/barrelfish-master/usr/drivers/e1000/
H A De1000n.c377 eds->maxbase = -1;
555 eds->maxbase = atol(bfi->argv[i] + strlen("affinitymax="));
556 E1000_DEBUG("maxbase = %lu\n", eds->maxbase);
582 if ((eds->minbase != -1) && (eds->maxbase != -1)) {
583 E1000_DEBUG("set memory affinity [%lx, %lx]\n", eds->minbase, eds->maxbase);
584 ram_set_affinity(eds->minbase, eds->maxbase);
H A De1000n.h226 uint64_t maxbase; member in struct:e1000_driver_state
/barrelfish-master/lib/net_queue_manager/
H A Dqueue_manager.c965 static uint64_t maxbase = -1ULL; local
971 maxbase = atol(arg + strlen("affinitymax="));
976 if (!affinity_set && minbase != -1ULL && maxbase != -1ULL) {
977 ram_set_affinity(minbase, maxbase);

Completed in 105 milliseconds