Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 3066) sorted by relevance

12345678910>>...123

/linux-6.12.1/sound/core/seq/
Dseq_fifo.c20 struct snd_seq_fifo *f; in snd_seq_fifo_new() local
22 f = kzalloc(sizeof(*f), GFP_KERNEL); in snd_seq_fifo_new()
23 if (!f) in snd_seq_fifo_new()
26 f->pool = snd_seq_pool_new(poolsize); in snd_seq_fifo_new()
27 if (f->pool == NULL) { in snd_seq_fifo_new()
28 kfree(f); in snd_seq_fifo_new()
31 if (snd_seq_pool_init(f->pool) < 0) { in snd_seq_fifo_new()
32 snd_seq_pool_delete(&f->pool); in snd_seq_fifo_new()
33 kfree(f); in snd_seq_fifo_new()
37 spin_lock_init(&f->lock); in snd_seq_fifo_new()
[all …]
/linux-6.12.1/drivers/media/test-drivers/visl/
Dvisl-trace-av1.h61 TP_PROTO(const struct v4l2_ctrl_av1_frame *f),
62 TP_ARGS(f),
63 TP_STRUCT__entry(__field_struct(struct v4l2_ctrl_av1_frame, f)),
64 TP_fast_assign(__entry->f = *f;),
89 __print_flags(__entry->f.tile_info.flags, "|",
91 __entry->f.tile_info.context_update_tile_id,
92 __entry->f.tile_info.tile_cols,
93 __entry->f.tile_info.tile_rows,
94 __print_array(__entry->f.tile_info.mi_col_starts,
95 ARRAY_SIZE(__entry->f.tile_info.mi_col_starts),
[all …]
Dvisl-trace-vp8.h12 TP_PROTO(const struct v4l2_ctrl_vp8_frame *f),
13 TP_ARGS(f),
14 TP_STRUCT__entry(__field_struct(struct v4l2_ctrl_vp8_frame, f)),
15 TP_fast_assign(__entry->f = *f;),
21 __entry->f.entropy.coeff_probs,
22 sizeof(__entry->f.entropy.coeff_probs),
24 __print_array(__entry->f.entropy.y_mode_probs,
25 ARRAY_SIZE(__entry->f.entropy.y_mode_probs),
26 sizeof(__entry->f.entropy.y_mode_probs[0])),
27 __print_array(__entry->f.entropy.uv_mode_probs,
[all …]
/linux-6.12.1/arch/s390/lib/
Dtest_modules.h5 #define __REPEAT_10000_3(f, x) \ argument
6 f(x ## 0); \
7 f(x ## 1); \
8 f(x ## 2); \
9 f(x ## 3); \
10 f(x ## 4); \
11 f(x ## 5); \
12 f(x ## 6); \
13 f(x ## 7); \
14 f(x ## 8); \
[all …]
/linux-6.12.1/drivers/net/wireless/intel/iwlwifi/
Diwl-debug.h40 #define CHECK_FOR_NEWLINE(f) BUILD_BUG_ON(f[sizeof(f) - 2] != '\n') argument
43 #define __IWL_ERR_DEV(d, mode, f, a...) \ argument
45 CHECK_FOR_NEWLINE(f); \
46 __iwl_err((d), mode, f, ## a); \
48 #define IWL_ERR_DEV(d, f, a...) \ argument
49 __IWL_ERR_DEV(d, IWL_ERR_MODE_REGULAR, f, ## a)
50 #define IWL_ERR(m, f, a...) \ argument
51 IWL_ERR_DEV((m)->dev, f, ## a)
52 #define IWL_ERR_LIMIT(m, f, a...) \ argument
53 __IWL_ERR_DEV((m)->dev, IWL_ERR_MODE_RATELIMIT, f, ## a)
[all …]
/linux-6.12.1/drivers/spi/
Dspi-nxp-fspi.c399 static inline int needs_ip_only(struct nxp_fspi *f) in needs_ip_only() argument
401 return f->devtype_data->quirks & FSPI_QUIRK_USE_IP_ONLY; in needs_ip_only()
411 static void fspi_writel(struct nxp_fspi *f, u32 val, void __iomem *addr) in fspi_writel() argument
413 if (f->devtype_data->little_endian) in fspi_writel()
419 static u32 fspi_readl(struct nxp_fspi *f, void __iomem *addr) in fspi_readl() argument
421 if (f->devtype_data->little_endian) in fspi_readl()
429 struct nxp_fspi *f = dev_id; in nxp_fspi_irq_handler() local
433 reg = fspi_readl(f, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler()
434 fspi_writel(f, FSPI_INTR_IPCMDDONE, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler()
437 complete(&f->c); in nxp_fspi_irq_handler()
[all …]
/linux-6.12.1/drivers/dma-buf/
Dst-dma-fence.c22 } *to_mock_fence(struct dma_fence *f) { in to_mock_fence() argument
23 return container_of(f, struct mock_fence, base); in to_mock_fence()
26 static const char *mock_name(struct dma_fence *f) in mock_name() argument
31 static void mock_fence_release(struct dma_fence *f) in mock_fence_release() argument
33 kmem_cache_free(slab_fences, to_mock_fence(f)); in mock_fence_release()
41 static void mock_wakeup(struct dma_fence *f, struct dma_fence_cb *cb) in mock_wakeup() argument
46 static long mock_wait(struct dma_fence *f, bool intr, long timeout) in mock_wait() argument
51 if (dma_fence_add_callback(f, &cb.cb, mock_wakeup)) in mock_wait()
57 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &f->flags)) in mock_wait()
67 if (!dma_fence_remove_callback(f, &cb.cb)) in mock_wait()
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dlinked_list_fail.c12 struct foo *f, *f1, *f2; \
31 f = bpf_obj_new(typeof(*f)); \
32 if (!f) \
34 f1 = f; \
57 CHECK(kptr, pop_front, &f->head);
58 CHECK(kptr, pop_back, &f->head);
80 CHECK(kptr, push_front, &f->head, &b->node);
81 CHECK(kptr, push_back, &f->head, &b->node);
83 CHECK(global, push_front, &ghead, &f->node2);
84 CHECK(global, push_back, &ghead, &f->node2);
[all …]
/linux-6.12.1/drivers/media/pci/ivtv/
Divtv-yuv.c32 struct yuv_frame_info *f = &yi->new_frame_info[frame]; in ivtv_yuv_prep_user_dma() local
40 y_decode_height = uv_decode_height = f->src_h + f->src_y; in ivtv_yuv_prep_user_dma()
42 if (f->offset_y) in ivtv_yuv_prep_user_dma()
128 if (f->offset_y && yi->blanking_dmaptr) { in ivtv_yuv_prep_user_dma()
217 static void ivtv_yuv_handle_horizontal(struct ivtv *itv, struct yuv_frame_info *f) in ivtv_yuv_handle_horizontal() argument
230 f->tru_w, f->src_w, f->dst_w, f->src_x, f->dst_x); in ivtv_yuv_handle_horizontal()
233 x_cutoff = f->src_w + f->src_x; in ivtv_yuv_handle_horizontal()
236 reg_2834 = f->dst_w; in ivtv_yuv_handle_horizontal()
240 reg_2890 = f->dst_x; in ivtv_yuv_handle_horizontal()
251 if (f->vis_w == 720) { in ivtv_yuv_handle_horizontal()
[all …]
/linux-6.12.1/scripts/
Ddocumentation-file-ref-check60 my $f = $doc_ref;
63 $f =~ s,.*\<([^\>]+)\>,$1,;
65 if ($f =~ m,^/,) {
66 $f = "$f.rst";
67 $f =~ s,^/,Documentation/,;
69 $f = "$d$f.rst";
72 next if (grep -e, glob("$f"));
88 my $f = $1;
92 next if ($f =~ m,^Next/,);
95 next if ($f =~ m/Makefile/ || $f =~ m/\.sh$/);
[all …]
/linux-6.12.1/drivers/gpu/drm/i915/
Di915_sw_fence_work.c9 static void fence_complete(struct dma_fence_work *f) in fence_complete() argument
11 if (f->ops->release) in fence_complete()
12 f->ops->release(f); in fence_complete()
13 dma_fence_signal(&f->dma); in fence_complete()
18 struct dma_fence_work *f = container_of(work, typeof(*f), work); in fence_work() local
20 f->ops->work(f); in fence_work()
22 fence_complete(f); in fence_work()
23 dma_fence_put(&f->dma); in fence_work()
29 struct dma_fence_work *f = container_of(fence, typeof(*f), chain); in fence_notify() local
34 dma_fence_set_error(&f->dma, fence->error); in fence_notify()
[all …]
/linux-6.12.1/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_filter.c56 static int set_tcb_field(struct adapter *adap, struct filter_entry *f, in set_tcb_field() argument
75 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3); in set_tcb_field()
82 static int set_tcb_tflag(struct adapter *adap, struct filter_entry *f, in set_tcb_tflag() argument
86 return set_tcb_field(adap, f, ftid, TCB_T_FLAGS_W, 1ULL << bit_pos, in set_tcb_tflag()
120 static void mk_set_tcb_ulp(struct filter_entry *f, in mk_set_tcb_ulp() argument
132 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD, f->tid)); in mk_set_tcb_ulp()
143 static int configure_filter_smac(struct adapter *adap, struct filter_entry *f) in configure_filter_smac() argument
148 err = set_tcb_field(adap, f, f->tid, TCB_SMAC_SEL_W, in configure_filter_smac()
150 TCB_SMAC_SEL_V(f->smt->idx), 1); in configure_filter_smac()
154 err = set_tcb_tflag(adap, f, f->tid, TF_CCTRL_CWR_S, 1, 1); in configure_filter_smac()
[all …]
/linux-6.12.1/include/linux/
Dindirect_call_wrapper.h17 #define INDIRECT_CALL_1(f, f1, ...) \ argument
19 likely(f == f1) ? f1(__VA_ARGS__) : f(__VA_ARGS__); \
21 #define INDIRECT_CALL_2(f, f2, f1, ...) \ argument
23 likely(f == f2) ? f2(__VA_ARGS__) : \
24 INDIRECT_CALL_1(f, f1, __VA_ARGS__); \
26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \ argument
28 likely(f == f3) ? f3(__VA_ARGS__) : \
29 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__); \
31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \ argument
33 likely(f == f4) ? f4(__VA_ARGS__) : \
[all …]
/linux-6.12.1/arch/riscv/kernel/
Dasm-offsets.c53 OFFSET(TASK_THREAD_F0, task_struct, thread.fstate.f[0]); in asm_offsets()
54 OFFSET(TASK_THREAD_F1, task_struct, thread.fstate.f[1]); in asm_offsets()
55 OFFSET(TASK_THREAD_F2, task_struct, thread.fstate.f[2]); in asm_offsets()
56 OFFSET(TASK_THREAD_F3, task_struct, thread.fstate.f[3]); in asm_offsets()
57 OFFSET(TASK_THREAD_F4, task_struct, thread.fstate.f[4]); in asm_offsets()
58 OFFSET(TASK_THREAD_F5, task_struct, thread.fstate.f[5]); in asm_offsets()
59 OFFSET(TASK_THREAD_F6, task_struct, thread.fstate.f[6]); in asm_offsets()
60 OFFSET(TASK_THREAD_F7, task_struct, thread.fstate.f[7]); in asm_offsets()
61 OFFSET(TASK_THREAD_F8, task_struct, thread.fstate.f[8]); in asm_offsets()
62 OFFSET(TASK_THREAD_F9, task_struct, thread.fstate.f[9]); in asm_offsets()
[all …]
/linux-6.12.1/include/linux/mtd/
Dsh_flctl.h18 #define FLCMNCR(f) (f->reg + 0x0) argument
19 #define FLCMDCR(f) (f->reg + 0x4) argument
20 #define FLCMCDR(f) (f->reg + 0x8) argument
21 #define FLADR(f) (f->reg + 0xC) argument
22 #define FLADR2(f) (f->reg + 0x3C) argument
23 #define FLDATAR(f) (f->reg + 0x10) argument
24 #define FLDTCNTR(f) (f->reg + 0x14) argument
25 #define FLINTDMACR(f) (f->reg + 0x18) argument
26 #define FLBSYTMR(f) (f->reg + 0x1C) argument
27 #define FLBSYCNT(f) (f->reg + 0x20) argument
[all …]
/linux-6.12.1/drivers/net/ethernet/microchip/lan966x/
Dlan966x_tc_matchall.c6 struct tc_cls_matchall_offload *f, in lan966x_tc_matchall_add() argument
11 if (!flow_offload_has_one_action(&f->rule->action)) { in lan966x_tc_matchall_add()
12 NL_SET_ERR_MSG_MOD(f->common.extack, in lan966x_tc_matchall_add()
17 act = &f->rule->action.entries[0]; in lan966x_tc_matchall_add()
20 return lan966x_police_port_add(port, &f->rule->action, act, in lan966x_tc_matchall_add()
21 f->cookie, ingress, in lan966x_tc_matchall_add()
22 f->common.extack); in lan966x_tc_matchall_add()
24 return lan966x_mirror_port_add(port, act, f->cookie, in lan966x_tc_matchall_add()
25 ingress, f->common.extack); in lan966x_tc_matchall_add()
27 return lan966x_goto_port_add(port, f->common.chain_index, in lan966x_tc_matchall_add()
[all …]
/linux-6.12.1/scripts/dtc/
Dtreesource.c22 yyin = current_srcfile->f; in dt_from_source()
34 static void write_prefix(FILE *f, int level) in write_prefix() argument
39 fputc('\t', f); in write_prefix()
49 static void write_propval_string(FILE *f, const char *s, size_t len) in write_propval_string() argument
58 fprintf(f, "\""); in write_propval_string()
63 fprintf(f, "\\a"); in write_propval_string()
66 fprintf(f, "\\b"); in write_propval_string()
69 fprintf(f, "\\t"); in write_propval_string()
72 fprintf(f, "\\n"); in write_propval_string()
75 fprintf(f, "\\v"); in write_propval_string()
[all …]
/linux-6.12.1/net/sched/
Dcls_route.c78 struct route4_filter *f) in route4_set_fastmap() argument
86 head->fastmap[h].filter = f; in route4_set_fastmap()
112 *res = f->res; \
113 if (tcf_exts_has_actions(&f->exts)) { \
114 int r = tcf_exts_exec(skb, &f->exts, res); \
121 route4_set_fastmap(head, id, iif, f); \
132 struct route4_filter *f; in route4_classify() local
149 (f = head->fastmap[h].filter) != NULL) { in route4_classify()
150 if (f == ROUTE4_FAILURE) { in route4_classify()
155 *res = f->res; in route4_classify()
[all …]
Dcls_fw.c56 struct fw_filter *f; in fw_classify() local
63 for (f = rcu_dereference_bh(head->ht[fw_hash(id)]); f; in fw_classify()
64 f = rcu_dereference_bh(f->next)) { in fw_classify()
65 if (f->id == id) { in fw_classify()
66 *res = f->res; in fw_classify()
67 if (!tcf_match_indev(skb, f->ifindex)) in fw_classify()
69 r = tcf_exts_exec(skb, &f->exts, res); in fw_classify()
94 struct fw_filter *f; in fw_get() local
99 f = rtnl_dereference(head->ht[fw_hash(handle)]); in fw_get()
100 for (; f; f = rtnl_dereference(f->next)) { in fw_get()
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/
Dgenerate_udp_fragments.py32 def print_header(f): argument
33 f.write("// SPDX-License-Identifier: GPL-2.0\n")
34 f.write("/* DO NOT EDIT -- this file is generated */\n")
35 f.write("\n")
36 f.write("#ifndef _IP_CHECK_DEFRAG_FRAGS_H\n")
37 f.write("#define _IP_CHECK_DEFRAG_FRAGS_H\n")
38 f.write("\n")
39 f.write("#include <stdint.h>\n")
40 f.write("\n")
43 def print_frags(f, frags, v6): argument
[all …]
/linux-6.12.1/include/linux/ceph/
Drados.h203 #define __CEPH_FORALL_OSD_OPS(f) \ argument
206 f(READ, __CEPH_OSD_OP(RD, DATA, 1), "read") \
207 f(STAT, __CEPH_OSD_OP(RD, DATA, 2), "stat") \
208 f(MAPEXT, __CEPH_OSD_OP(RD, DATA, 3), "mapext") \
211 f(MASKTRUNC, __CEPH_OSD_OP(RD, DATA, 4), "masktrunc") \
212 f(SPARSE_READ, __CEPH_OSD_OP(RD, DATA, 5), "sparse-read") \
214 f(NOTIFY, __CEPH_OSD_OP(RD, DATA, 6), "notify") \
215 f(NOTIFY_ACK, __CEPH_OSD_OP(RD, DATA, 7), "notify-ack") \
218 f(ASSERT_VER, __CEPH_OSD_OP(RD, DATA, 8), "assert-version") \
220 f(LIST_WATCHERS, __CEPH_OSD_OP(RD, DATA, 9), "list-watchers") \
[all …]
/linux-6.12.1/tools/workqueue/
Dwq_dump.py71 output += f'{hex(v)} '
76 output += f'{v:08x}'
83 return f'{"bh":{wq_type_len}}'
86 return f'{"ordered":{wq_type_len}}'
89 return f'{"unbound,S":{wq_type_len}}'
91 return f'{"unbound":{wq_type_len}}'
93 return f'{"percpu":{wq_type_len}}'
121 print(f'wq_unbound_cpumask={cpumask_str(wq_unbound_cpumask)}')
124 print(f' nr_pods {pt.nr_pods.value_()}')
128 print(f' [{pod}]={cpumask_str(pt.pod_cpus[pod])}', end='')
[all …]
/linux-6.12.1/tools/cgroup/
Diocost_coef_gen.py62 devname = subprocess.run(f'findmnt -nvo SOURCE -T{path}',
70 rdev = os.stat(f'/dev/{devname}').st_rdev
71 return (devname, f'{os.major(rdev)}:{os.minor(rdev)}')
79 info(f'Creating testfile {path}')
80 subprocess.check_call(f'rm -f {path}', shell=True)
81 subprocess.check_call(f'touch {path}', shell=True)
82 subprocess.call(f'chattr +C {path}', shell=True)
84 f'pv -s {size} -pr /dev/urandom {"-q" if args.quiet else ""} | '
85 f'dd of={path} count={size} '
86 f'iflag=count_bytes,fullblock oflag=direct bs=16M status=none',
[all …]
/linux-6.12.1/drivers/gpu/drm/amd/amdgpu/
Damdgpu_vm_tlb_fence.c46 static const char *amdgpu_tlb_fence_get_timeline_name(struct dma_fence *f) in amdgpu_tlb_fence_get_timeline_name() argument
53 struct amdgpu_tlb_fence *f = container_of(work, typeof(*f), work); in amdgpu_tlb_fence_work() local
56 if (f->dependency) { in amdgpu_tlb_fence_work()
57 dma_fence_wait(f->dependency, false); in amdgpu_tlb_fence_work()
58 dma_fence_put(f->dependency); in amdgpu_tlb_fence_work()
59 f->dependency = NULL; in amdgpu_tlb_fence_work()
62 r = amdgpu_gmc_flush_gpu_tlb_pasid(f->adev, f->pasid, 2, true, 0); in amdgpu_tlb_fence_work()
64 dev_err(f->adev->dev, "TLB flush failed for PASID %d.\n", in amdgpu_tlb_fence_work()
65 f->pasid); in amdgpu_tlb_fence_work()
66 dma_fence_set_error(&f->base, r); in amdgpu_tlb_fence_work()
[all …]
/linux-6.12.1/drivers/media/test-drivers/vivid/
Dvivid-touch-cap.c16 struct v4l2_pix_format *f = &dev->tch_format; in touch_cap_queue_setup() local
17 unsigned int size = f->sizeimage; in touch_cap_queue_setup()
33 struct v4l2_pix_format *f = &dev->tch_format; in touch_cap_buf_prepare() local
34 unsigned int size = f->sizeimage; in touch_cap_buf_prepare()
117 int vivid_enum_fmt_tch(struct file *file, void *priv, struct v4l2_fmtdesc *f) in vivid_enum_fmt_tch() argument
119 if (f->index) in vivid_enum_fmt_tch()
122 f->pixelformat = V4L2_TCH_FMT_DELTA_TD16; in vivid_enum_fmt_tch()
126 int vivid_g_fmt_tch(struct file *file, void *priv, struct v4l2_format *f) in vivid_g_fmt_tch() argument
132 f->fmt.pix = dev->tch_format; in vivid_g_fmt_tch()
136 int vivid_g_fmt_tch_mplane(struct file *file, void *priv, struct v4l2_format *f) in vivid_g_fmt_tch_mplane() argument
[all …]

12345678910>>...123