Searched refs:csb (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/sys/net/
H A Dparavirt.h36 The guest allocates the shared Communication Status Block (csb) and
38 csb->csb_on enables the mode. If disabled, the device acts a regular one.
41 if possible. In particular (only mentioning csb mode below),
152 void paravirt_configure_csb(struct paravirt_csb** csb, uint32_t csbbal,
/freebsd-12-stable/sys/compat/cloudabi/
H A Dcloudabi_file.c539 convert_stat(const struct stat *sb, cloudabi_filestat_t *csb) argument
551 *csb = res;
559 cloudabi_filestat_t csb; local
564 memset(&csb, 0, sizeof(csb));
579 convert_stat(&sb, &csb);
580 csb.st_filetype = filetype;
581 return (copyout(&csb, uap->buf, sizeof(csb)));
649 cloudabi_filestat_t csb; local
[all...]
/freebsd-12-stable/tests/sys/netmap/
H A Dctrl-api-test.c156 void *csb; /* CSB entries (atok and ktoa) */ member in struct:TestContext
1220 if (ctx->csb) {
1221 free(ctx->csb);
1223 ret = posix_memalign(&ctx->csb, sizeof(struct nm_csb_atok), csb_size);
1231 opt->csb_atok = (uintptr_t)ctx->csb;
1232 opt->csb_ktoa = (uintptr_t)(((uint8_t *)ctx->csb) +
1781 if (ctx->csb) {
1782 free(ctx->csb);
1783 ctx->csb = NULL;
/freebsd-12-stable/sys/dev/netmap/
H A Dnetmap_kern.h2414 #define CSB_READ(csb, field, r) (get_user(r, &csb->field))
2415 #define CSB_WRITE(csb, field, v) (put_user(v, &csb->field))
2417 #define CSB_READ(csb, field, r) (r = fuword32(&csb->field))
2418 #define CSB_WRITE(csb, field, v) (suword32(&csb->field, v))

Completed in 125 milliseconds