Searched refs:inuse (Results 51 - 70 of 70) sorted by relevance

123

/linux-master/drivers/atm/
H A Didt77252.c2386 unsigned int inuse; local
2444 inuse = 0;
2447 inuse = 1;
2450 inuse += 2;
2452 if (inuse) {
2454 inuse == 1 ? "tx" : inuse == 2 ? "rx" : "tx and rx");
H A Dhe.h247 int inuse; member in struct:he_cs_stper
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_ras.h538 int inuse; member in struct:ras_ih_data
H A Damdgpu_ras.c2149 if (data->inuse == 0)
2175 if (data->inuse == 0)
2207 .inuse = 0,
2226 data->inuse = 1;
/linux-master/fs/ocfs2/dlm/
H A Ddlmmaster.c193 mle->inuse++;
204 mle->inuse--;
269 mle->inuse = 0;
1954 if (mle->inuse > 0) {
1968 "inuse=%d\n", dlm->name, namelen, name,
1969 assert->node_idx, rr, extra_ref, mle->inuse);
3377 if (mle->new_master == dead_node && mle->inuse) {
H A Ddlmdebug.c283 !!mle->inuse,
H A Ddlmcommon.h47 int inuse; member in struct:dlm_master_list_entry
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_file_ops.c1422 unsigned inuse = ~0U; local
1446 if (cfree && cused < inuse) {
1448 inuse = cused;
/linux-master/drivers/isdn/mISDN/
H A Ddsp_cmx.c601 if (member->dsp->pipeline.inuse) {
1599 if (dsp->pipeline.inuse)
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_tc_mqprio.c132 eosw_txq->inuse = 0;
H A Dsge.c2140 eosw_txq->inuse += n;
2146 if (eosw_txq->inuse == eosw_txq->ndesc)
2506 eosw_txq->inuse--;
4037 eosw_txq->inuse -= pktcount;
H A Dcxgb4.h938 u32 inuse; /* Number of packets held in ring */ member in struct:sge_eosw_txq
H A Dcxgb4_debugfs.c2696 T("TxQ inuse:", q.in_use);
2819 T("TxQ inuse:", q.in_use);
2883 T("In-Use:", inuse);
2927 T("TxQ inuse:", q.in_use);
3078 T("TxQ inuse:", q.in_use);
3110 T("TxQ inuse:", q.in_use);
/linux-master/mm/
H A Dswapfile.c2027 * Return 0 if there are no inuse entries after prev till end of
2653 unsigned long bytes, inuse; local
2661 inuse = K(READ_ONCE(si->inuse_pages));
2670 inuse, inuse < 10000000 ? "\t" : "",
/linux-master/drivers/infiniband/hw/hns/
H A Dhns_roce_device.h477 u32 inuse; /* Number of IDs allocated */ member in struct:hns_roce_bank
/linux-master/drivers/net/ethernet/marvell/octeontx2/nic/
H A Dotx2_common.h341 bool inuse; member in struct:otx2_mac_table
/linux-master/drivers/net/dsa/ocelot/
H A Dfelix_vsc9959.c950 static void vsc9959_wm_stat(u32 val, u32 *inuse, u32 *maxuse) argument
952 *inuse = (val & GENMASK(23, 12)) >> 12;
/linux-master/drivers/media/pci/saa7164/
H A Dsaa7164-core.c1303 dev->cmds[i].inuse = 0;
/linux-master/net/core/
H A Ddev.c1063 unsigned long *inuse; local
1075 inuse = bitmap_zalloc(max_netdevices, GFP_ATOMIC);
1076 if (!inuse)
1091 __set_bit(i, inuse);
1101 __set_bit(i, inuse);
1104 i = find_first_zero_bit(inuse, max_netdevices);
1105 bitmap_free(inuse);
/linux-master/net/netfilter/
H A Dnf_tables_api.c4472 unsigned long *inuse; local
4483 inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL);
4484 if (inuse == NULL)
4497 set_bit(tmp - min, inuse);
4500 n = find_first_zero_bit(inuse, BITS_PER_BYTE * PAGE_SIZE);
4503 memset(inuse, 0, PAGE_SIZE);
4506 free_page((unsigned long)inuse);

Completed in 414 milliseconds

123