HomeSort by: relevance | last modified time | path
    Searched defs:stx (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/compat/linux32/common/
linux32_stat.c 291 struct linux_statx stx; local in function:linux32_sys_statx
301 error = bsd_to_linux_statx(&st, &stx, SCARG(uap, mask));
305 return copyout(&stx, SCARG_P32(uap, sp), sizeof stx);
  /src/sys/compat/linux/common/
linux_file64.c 112 bsd_to_linux_statx(struct stat *st, struct linux_statx *stx,
123 memset(stx, 0, sizeof(*stx));
126 stx->stx_attributes |= STATX_ATTR_NODUMP;
128 stx->stx_attributes |= STATX_ATTR_IMMUTABLE;
130 stx->stx_attributes |= STATX_ATTR_APPEND;
132 stx->stx_attributes_mask =
135 stx->stx_blksize = st->st_blksize;
137 stx->stx_nlink = st->st_nlink;
138 stx->stx_uid = st->st_uid
328 struct linux_statx stx; local in function:linux_sys_statx
    [all...]
  /src/sys/dev/pci/cxgb/
cxgb_sge.c 921 struct tx_sw_desc *stx, bus_dma_segment_t *segs, int *nsegs)
939 err = bus_dmamap_create(txq->entry_tag, total_len, TX_MAX_SEGS, total_len, 0, BUS_DMA_NOWAIT, &stx->map);
942 err = bus_dmamap_load_mbuf(txq->entry_tag, stx->map, *m, 0);
946 *nsegs = stx->map->dm_nsegs;
949 segs[i] = stx->map->dm_segs[i];
987 bus_dmamap_sync(txq->entry_tag, stx->map, 0, pktlen, BUS_DMASYNC_PREWRITE);
988 stx->flags |= TX_SW_DESC_MAPPED;
1160 struct tx_sw_desc *stx; local in function:t3_encap
1184 stx = &txq->sdesc[txq->pidx];
1276 if ((err = busdma_map_mbufs(m, txq, stx, segs, &nsegs)) != 0)
1792 struct tx_sw_desc *stx = &q->sdesc[q->pidx]; local in function:ofld_xmit
1854 struct tx_sw_desc *stx = &q->sdesc[q->pidx]; local in function:restart_offloadq
    [all...]

Completed in 14 milliseconds