Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 951) sorted by relevance

12345678910>>...39

/linux/fs/afs/
A Dcell.c68 if (!cell) in afs_find_cell_locked()
107 return cell; in afs_find_cell()
144 if (!cell) { in afs_alloc_cell()
151 kfree(cell); in afs_alloc_cell()
208 return cell; in afs_alloc_cell()
215 kfree(cell); in afs_alloc_cell()
297 trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), atomic_read(&cell->active), in afs_lookup_cell()
313 return cell; in afs_lookup_cell()
496 _enter("%p{%s}", cell, cell->name); in afs_cell_destroy()
555 if (cell) { in afs_put_cell()
[all …]
A Dvl_alias.c25 .net = cell->net, in afs_sample_volume()
26 .cell = cell, in afs_sample_volume()
116 if (p == cell || p->alias_of) in afs_compare_cell_roots()
189 _enter("%s", cell->name); in afs_query_for_alias()
195 if (p == cell || p->alias_of) in afs_query_for_alias()
282 _enter("%s", cell->name); in afs_do_cell_detect_alias()
291 cell->root_volume = root_volume; in afs_do_cell_detect_alias()
292 return afs_compare_cell_roots(cell); in afs_do_cell_detect_alias()
314 struct afs_net *net = cell->net; in afs_cell_detect_alias()
325 ret = cell->alias_of ? 1 : 0; in afs_cell_detect_alias()
[all …]
A Dvl_rotate.c23 vc->cell = cell; in afs_begin_vlserver_operation()
44 struct afs_cell *cell = vc->cell; in afs_start_vl_iteration() local
50 set_bit(AFS_CELL_FL_DO_LOOKUP, &cell->flags); in afs_start_vl_iteration()
55 &cell->dns_lookup_count, in afs_start_vl_iteration()
76 read_lock(&cell->vl_servers_lock); in afs_start_vl_iteration()
78 rcu_dereference_protected(cell->vl_servers, in afs_start_vl_iteration()
80 read_unlock(&cell->vl_servers_lock); in afs_start_vl_iteration()
326 struct afs_cell *cell = vc->cell; in afs_vl_dump_edestaddrreq() local
336 pr_notice("CELL: %s err=%d\n", cell->name, cell->error); in afs_vl_dump_edestaddrreq()
338 cell->dns_source, cell->dns_status, cell->dns_lookup_count); in afs_vl_dump_edestaddrreq()
[all …]
A Dsuper.c160 struct afs_cell *cell = as->cell; in afs_show_devname() local
303 ctx->cell = cell; in afs_parse_source()
307 ctx->cell->name, ctx->cell, in afs_parse_source()
370 if (!ctx->cell) { in afs_validate_fc()
396 cell = afs_use_cell(ctx->cell->alias_of, in afs_validate_fc()
399 ctx->cell = cell; in afs_validate_fc()
429 as->cell == ctx->cell && in afs_test_super()
519 as->cell = afs_use_cell(ctx->cell, afs_cell_trace_use_sbi); in afs_alloc_sbi()
646 if (IS_ERR(cell)) in afs_init_fs_context()
647 cell = NULL; in afs_init_fs_context()
[all …]
A Dproc.c37 struct afs_cell *cell; in afs_proc_cells_show() local
54 cell->state, in afs_proc_cells_show()
55 cell->name); in afs_proc_cells_show()
123 struct afs_cell *cell; in afs_proc_cells_write() local
126 if (IS_ERR(cell)) { in afs_proc_cells_write()
127 ret = PTR_ERR(cell); in afs_proc_cells_write()
209 cell = net->ws_cell; in afs_proc_rootcell_show()
210 if (cell) in afs_proc_rootcell_show()
680 _enter("%p{%s},%p", cell, cell->name, net->proc_afs); in afs_proc_cell_setup()
689 cell) || in afs_proc_cell_setup()
[all …]
A Dvolume.c26 write_seqlock(&cell->volume_lock); in afs_insert_volume_into_cell()
28 pp = &cell->volumes.rb_node; in afs_insert_volume_into_cell()
52 write_sequnlock(&cell->volume_lock); in afs_insert_volume_into_cell()
59 struct afs_cell *cell = volume->cell; in afs_remove_volume_from_cell() local
64 write_seqlock(&cell->volume_lock); in afs_remove_volume_from_cell()
67 rb_erase(&volume->cell_node, &cell->volumes); in afs_remove_volume_from_cell()
68 write_sequnlock(&cell->volume_lock); in afs_remove_volume_from_cell()
89 volume->cell = afs_get_cell(params->cell, afs_cell_trace_get_vol); in afs_alloc_volume()
248 afs_put_serverlist(volume->cell->net, slist); in afs_destroy_volume()
314 volume->cell->name, volume->vid); in afs_activate_volume()
[all …]
A Ddynroot.c113 struct afs_cell *cell; in afs_probe_cell_name() local
129 if (!IS_ERR(cell)) { in afs_probe_cell_name()
194 struct afs_cell *cell; in afs_lookup_atcell() local
209 cell = net->ws_cell; in afs_lookup_atcell()
210 if (cell) { in afs_lookup_atcell()
211 len = cell->name_len; in afs_lookup_atcell()
212 memcpy(name, cell->name, len + 1); in afs_lookup_atcell()
217 if (!cell) in afs_lookup_atcell()
283 subdir = lookup_one_len(cell->name, root, cell->name_len); in afs_dynroot_mkdir()
313 subdir = try_lookup_one_len(cell->name, root, cell->name_len); in afs_dynroot_rmdir()
[all …]
A Dmntpt.c76 struct afs_cell *cell; in afs_mntpt_set_params() local
89 if (ctx->cell) { in afs_mntpt_set_params()
90 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_mntpt); in afs_mntpt_set_params()
91 ctx->cell = NULL; in afs_mntpt_set_params()
110 cell = afs_lookup_cell(ctx->net, p, size, NULL, false); in afs_mntpt_set_params()
111 if (IS_ERR(cell)) { in afs_mntpt_set_params()
113 return PTR_ERR(cell); in afs_mntpt_set_params()
115 ctx->cell = cell; in afs_mntpt_set_params()
125 if (src_as->cell) in afs_mntpt_set_params()
126 ctx->cell = afs_use_cell(src_as->cell, afs_cell_trace_use_mntpt); in afs_mntpt_set_params()
A Dsecurity.c23 struct key *afs_request_key(struct afs_cell *cell) in afs_request_key() argument
27 _enter("{%x}", key_serial(cell->anonymous_key)); in afs_request_key()
29 _debug("key %s", cell->anonymous_key->description); in afs_request_key()
31 cell->net->net, NULL); in afs_request_key()
40 return key_get(cell->anonymous_key); in afs_request_key()
55 _enter("{%x}", key_serial(cell->anonymous_key)); in afs_request_key_rcu()
57 _debug("key %s", cell->anonymous_key->description); in afs_request_key_rcu()
59 cell->anonymous_key->description, in afs_request_key_rcu()
60 cell->net->net); in afs_request_key_rcu()
69 return key_get(cell->anonymous_key); in afs_request_key_rcu()
[all …]
/linux/drivers/md/
A Ddm-bio-prison-v2.c83 memset(cell, 0, sizeof(*cell)); in __setup_new_cell()
84 memcpy(&cell->key, key, sizeof(cell->key)); in __setup_new_cell()
137 *result = cell; in __find_or_insert()
165 (*cell)->shared_count++; in __get()
194 cell->shared_count--; in __put()
219 r = __put(prison, cell); in dm_cell_put_v2()
240 *cell_result = cell; in __lock()
247 cell = cell_prealloc; in __lock()
248 cell->shared_count = 0; in __lock()
251 *cell_result = cell; in __lock()
[all …]
A Ddm-bio-prison-v1.c23 struct rb_root cell; member
91 memcpy(&cell->key, key, sizeof(cell->key)); in __setup_new_cell()
92 cell->holder = holder; in __setup_new_cell()
161 *cell_result = cell; in __bio_detain()
220 if (cell->holder) in __cell_release()
233 __cell_release(&prison->regions[l].cell, cell, bios); in dm_cell_release()
257 __cell_release_no_holder(&prison->regions[l].cell, cell, inmates); in dm_cell_release_no_holder()
285 visit_fn(context, cell); in dm_cell_visit_release()
286 rb_erase(&cell->node, &prison->regions[l].cell); in dm_cell_visit_release()
299 cell->holder = bio_list_pop(&cell->bios); in __promote_or_release()
[all …]
A Ddm-bio-prison-v1.h73 struct dm_bio_prison_cell *cell);
104 struct dm_bio_prison_cell *cell,
107 struct dm_bio_prison_cell *cell,
110 struct dm_bio_prison_cell *cell, blk_status_t error);
118 void *context, struct dm_bio_prison_cell *cell);
131 struct dm_bio_prison_cell *cell);
/linux/drivers/staging/media/atomisp/pci/
A Disp2400_support.h25 #define hrt_isp_vamem1_store_16(cell, addr, val) hrt_mem_store_16(cell, HRT_PROC_TYPE_PROP(cell, _s… argument
26 #define hrt_isp_vamem2_store_16(cell, addr, val) hrt_mem_store_16(cell, HRT_PROC_TYPE_PROP(cell, _s… argument
28 #define hrt_isp_dmem(cell) HRT_PROC_TYPE_PROP(cell, _base_dmem) argument
29 #define hrt_isp_vmem(cell) HRT_PROC_TYPE_PROP(cell, _simd_vmem) argument
31 #define hrt_isp_dmem_master_port_address(cell) hrt_mem_master_port_address(cell, hrt_isp_dmem(cell)) argument
32 #define hrt_isp_vmem_master_port_address(cell) hrt_mem_master_port_address(cell, hrt_isp_vmem(cell)) argument
35 #define hrt_isp_hist(cell) HRT_PROC_TYPE_PROP(cell, _simd_histogram) argument
36 #define hrt_isp_hist_master_port_address(cell) hrt_mem_master_port_address(cell, hrt_isp_hist(cell)) argument
/linux/sound/core/seq/
A Dseq_prioq.c153 f->tail = cell; in snd_seq_prioq_cell_in()
188 cell->next = cur; in snd_seq_prioq_cell_in()
191 f->head = cell; in snd_seq_prioq_cell_in()
193 f->tail = cell; in snd_seq_prioq_cell_in()
219 cell = f->head; in snd_seq_prioq_cell_out()
221 cell = NULL; in snd_seq_prioq_cell_out()
222 if (cell) { in snd_seq_prioq_cell_out()
233 return cell; in snd_seq_prioq_cell_out()
258 for (cell = f->head; cell; cell = next) { in prioq_remove_cells()
261 prev = cell; in prioq_remove_cells()
[all …]
A Dseq_fifo.c122 f->tail = cell; in snd_seq_fifo_event_in()
124 f->head = cell; in snd_seq_fifo_event_in()
125 cell->next = NULL; in snd_seq_fifo_event_in()
144 cell = f->head; in fifo_cell_out()
145 if (cell) { in fifo_cell_out()
156 return cell; in fifo_cell_out()
191 *cellp = cell; in snd_seq_fifo_cell_out()
200 if (cell) { in snd_seq_fifo_cell_putback()
203 f->head = cell; in snd_seq_fifo_cell_putback()
205 f->tail = cell; in snd_seq_fifo_cell_putback()
[all …]
A Dseq_memory.c105 for (; len > 0 && cell; cell = cell->next) { in dump_var_event()
229 pool->free = cell; in free_cell()
237 if (snd_BUG_ON(!cell)) in snd_seq_cell_free()
239 pool = cell->pool; in snd_seq_cell_free()
312 cell = pool->free; in snd_seq_cell_alloc()
313 if (cell) { in snd_seq_cell_alloc()
322 cell->next = NULL; in snd_seq_cell_alloc()
326 *cellp = cell; in snd_seq_cell_alloc()
416 *cellp = cell; in snd_seq_event_dup()
437 int cell; in snd_seq_pool_init() local
[all …]
/linux/drivers/mfd/
A Dmfd-core.c112 if (!cell->use_of_reg) in mfd_match_of_node_to_dev()
162 pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL); in mfd_add_device()
212 cell->name, platform_id); in mfd_add_device()
217 if (cell->pdata_size) { in mfd_add_device()
219 cell->platform_data, cell->pdata_size); in mfd_add_device()
224 if (cell->swnode) { in mfd_add_device()
240 cell->resources[r].end; in mfd_add_device()
252 cell->resources[r].end; in mfd_add_device()
285 if (cell->swnode) in mfd_add_device()
354 cell = mfd_get_cell(pdev); in mfd_remove_devices_fn()
[all …]
/linux/drivers/clk/mmp/
A Dreset.c23 cell = &unit->cells[i]; in mmp_of_reset_xlate()
42 cell = &unit->cells[id]; in mmp_clk_reset_assert()
43 if (cell->lock) in mmp_clk_reset_assert()
46 val = readl(cell->reg); in mmp_clk_reset_assert()
47 val |= cell->bits; in mmp_clk_reset_assert()
48 writel(val, cell->reg); in mmp_clk_reset_assert()
50 if (cell->lock) in mmp_clk_reset_assert()
65 if (cell->lock) in mmp_clk_reset_deassert()
68 val = readl(cell->reg); in mmp_clk_reset_deassert()
69 val &= ~cell->bits; in mmp_clk_reset_deassert()
[all …]
/linux/drivers/nvmem/
A Dcore.c563 list_add_tail(&cell->node, &cell->nvmem->cells); in nvmem_cell_entry_add()
585 cell->bytes = DIV_ROUND_UP(cell->nbits + cell->bit_offset, in nvmem_cell_info_to_nvmem_cell_entry_nodup()
629 cell = kzalloc(sizeof(*cell), GFP_KERNEL); in nvmem_add_one_cell()
708 cell = kzalloc(sizeof(*cell), GFP_KERNEL); in nvmem_add_cells_from_table()
1314 cell = kzalloc(sizeof(*cell), GFP_KERNEL); in nvmem_create_cell()
1662 if (cell->bit_offset || cell->nbits) in __nvmem_cell_read()
1667 cell->offset, buf, cell->raw_len); in __nvmem_cell_read()
1702 rc = __nvmem_cell_read(nvmem, cell->entry, buf, len, cell->id, cell->index); in nvmem_cell_read()
1752 cell->offset + cell->bytes - 1, &v, 1); in nvmem_cell_prepare_write_buffer()
1782 if (cell->bit_offset || cell->nbits) { in __nvmem_cell_entry_write()
[all …]
/linux/net/core/
A Dgro_cells.c16 struct gro_cell *cell; in gro_cells_receive() local
28 cell = this_cpu_ptr(gcells->cells); in gro_cells_receive()
38 __skb_queue_tail(&cell->napi_skbs, skb); in gro_cells_receive()
39 if (skb_queue_len(&cell->napi_skbs) == 1) in gro_cells_receive()
40 napi_schedule(&cell->napi); in gro_cells_receive()
58 skb = __skb_dequeue(&cell->napi_skbs); in gro_cell_poll()
81 __skb_queue_head_init(&cell->napi_skbs); in gro_cells_init()
86 napi_enable(&cell->napi); in gro_cells_init()
116 napi_disable(&cell->napi); in gro_cells_destroy()
117 __netif_napi_del(&cell->napi); in gro_cells_destroy()
[all …]
/linux/drivers/of/
A Dcpu.c16 const __be32 *cell; in of_get_cpu_hwid() local
20 cell = of_get_property(cpun, "reg", &len); in of_get_cpu_hwid()
21 if (!cell || !ac || ((sizeof(*cell) * ac * (thread + 1)) > len)) in of_get_cpu_hwid()
24 cell += ac * thread; in of_get_cpu_hwid()
25 return of_read_number(cell, ac); in of_get_cpu_hwid()
55 const __be32 *cell; in __of_find_n_match_cpu_property() local
60 cell = of_get_property(cpun, prop_name, &prop_len); in __of_find_n_match_cpu_property()
63 if (!cell || !ac) in __of_find_n_match_cpu_property()
65 prop_len /= sizeof(*cell) * ac; in __of_find_n_match_cpu_property()
67 hwid = of_read_number(cell, ac); in __of_find_n_match_cpu_property()
[all …]
/linux/arch/arm64/boot/dts/freescale/
A Dqoriq-qman-portals.dtsi22 cell-index = <0>;
29 cell-index = <1>;
36 cell-index = <2>;
43 cell-index = <3>;
50 cell-index = <4>;
57 cell-index = <5>;
64 cell-index = <6>;
71 cell-index = <7>;
78 cell-index = <8>;
85 cell-index = <9>;
/linux/Documentation/devicetree/bindings/mips/cavium/
A Dbootbus.txt13 - #address-cells: Must be <2>. The first cell is the chip select
29 - cavium,cs-index: A single cell indicating the chip select that
32 - cavium,t-adr: A cell specifying the ADR timing (in nS).
34 - cavium,t-ce: A cell specifying the CE timing (in nS).
36 - cavium,t-oe: A cell specifying the OE timing (in nS).
38 - cavium,t-we: A cell specifying the WE timing (in nS).
40 - cavium,t-rd-hld: A cell specifying the RD_HLD timing (in nS).
42 - cavium,t-wr-hld: A cell specifying the WR_HLD timing (in nS).
44 - cavium,t-pause: A cell specifying the PAUSE timing (in nS).
46 - cavium,t-wait: A cell specifying the WAIT timing (in nS).
[all …]
/linux/Documentation/devicetree/bindings/net/
A Dibm,emac.txt24 - mal-tx-channel : 1 cell, index of the tx channel on McMAL associated
28 - cell-index : 1 cell, hardware index of the EMAC cell on a given
31 - max-frame-size : 1 cell, maximum frame size supported in bytes
38 - fifo-entry-size : 1 cell, size of a fifo entry (used to calculate
48 - mdio-device : 1 cell, required iff using shared MDIO registers
76 - rx-fifo-size-gige : 1 cell, Rx fifo size in bytes for 1000 Mb/sec
79 - tx-fifo-size-gige : 1 cell, Tx fifo size in bytes for 1000 Mb/sec
113 cell-index = <0>;
138 cell-index = <0>;
183 - num-tx-chans : 1 cell, number of Tx channels
[all …]
A Dfsl,fman.yaml26 cell-index:
33 there's a description of the cell-index use in each SoC:
36 register[bit] FMan unit cell-index
41 register[bit] FMan unit cell-index
48 register[bit] FMan unit cell-index
140 - cell-index
160 cell-index = <1>;
173 cell-index = <1>;
179 cell-index = <0x8>;
185 cell-index = <0x28>;
[all …]

Completed in 35 milliseconds

12345678910>>...39