Home
last modified time | relevance | path

Searched full:f (Results 1 – 25 of 3793) sorted by relevance

12345678910>>...152

/Linux-v6.6/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-v6.6/tools/power/acpi/man/
Dpfrut.88 \f[B]pfrut\f[R] [\f[I]Options\f[R]]
25 \f[B]pfrut\f[R] is the tool to interact with the kernel interface.
31 .B \f[B]\-h\f[R], \f[B]\-\-help\f[R]
34 .B \f[B]\-l\f[R], \f[B]\-\-load\f[R]
39 .B \f[B]\-s\f[R], \f[B]\-\-stage\f[R]
43 .B \f[B]\-a\f[R], \f[B]\-\-activate\f[R]
46 .B \f[B]\-u\f[R], \f[B]\-\-update\f[R]
49 .B \f[B]\-q\f[R], \f[B]\-\-query\f[R]
52 .B \f[B]\-d\f[R], \f[B]\-\-setrev\f[R]
55 .B \f[B]\-D\f[R], \f[B]\-\-setrevlog\f[R]
[all …]
/Linux-v6.6/drivers/media/test-drivers/visl/
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-v6.6/arch/riscv/kernel/
Dasm-offsets.c42 OFFSET(TASK_THREAD_F0, task_struct, thread.fstate.f[0]); in asm_offsets()
43 OFFSET(TASK_THREAD_F1, task_struct, thread.fstate.f[1]); in asm_offsets()
44 OFFSET(TASK_THREAD_F2, task_struct, thread.fstate.f[2]); in asm_offsets()
45 OFFSET(TASK_THREAD_F3, task_struct, thread.fstate.f[3]); in asm_offsets()
46 OFFSET(TASK_THREAD_F4, task_struct, thread.fstate.f[4]); in asm_offsets()
47 OFFSET(TASK_THREAD_F5, task_struct, thread.fstate.f[5]); in asm_offsets()
48 OFFSET(TASK_THREAD_F6, task_struct, thread.fstate.f[6]); in asm_offsets()
49 OFFSET(TASK_THREAD_F7, task_struct, thread.fstate.f[7]); in asm_offsets()
50 OFFSET(TASK_THREAD_F8, task_struct, thread.fstate.f[8]); in asm_offsets()
51 OFFSET(TASK_THREAD_F9, task_struct, thread.fstate.f[9]); in asm_offsets()
[all …]
/Linux-v6.6/
DMAINTAINERS33 F: *Files* and directories wildcard patterns.
35 F: drivers/net/ all files in and below drivers/net
36 F: drivers/net/* all files in drivers/net, but not below
37 F: */net/* all files in "any top level directory"/net
38 One pattern per line. Multiple F: lines acceptable.
40 rules as F:. Files exclusions are tested before file matches.
42 F: net/
50 match F: pattern and matches of N: patterns. By default,
51 get_maintainer will not look at git log history when an F: pattern
74 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
[all …]
/Linux-v6.6/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-v6.6/tools/testing/selftests/ftrace/test.d/dynevent/
Dfprobe_syntax_errors.tc4 # requires: dynamic_events "f[:[<group>/][<event>]] <func-name>[%return] [<args>]":README
19 check_error 'f^100 vfs_read' # MAXACT_NO_KPROBE
20 check_error 'f^1a111 vfs_read' # BAD_MAXACT
21 check_error 'f^100000 vfs_read' # MAXACT_TOO_BIG
23 check_error 'f ^non_exist_func' # BAD_PROBE_ADDR (enoent)
24 check_error 'f ^vfs_read+10' # BAD_PROBE_ADDR
25 check_error 'f:^/bar vfs_read' # NO_GROUP_NAME
26 check_error 'f:^12345678901234567890123456789012345678901234567890123456789012345/bar vfs_read' # G…
28 check_error 'f:^foo.1/bar vfs_read' # BAD_GROUP_NAME
29 check_error 'f:^ vfs_read' # NO_EVENT_NAME
[all …]
/Linux-v6.6/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-v6.6/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-v6.6/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-v6.6/Documentation/userspace-api/ioctl/
Dioctl-number.rst73 0x00 00-1F linux/fs.h conflict!
74 0x00 00-1F scsi/scsi_ioctl.h conflict!
75 0x00 00-1F linux/fb.h conflict!
76 0x00 00-1F linux/wavefront.h conflict!
82 0x10 00-0F drivers/char/s390/vmcp.h
83 0x10 10-1F arch/s390/include/uapi/sclp_ctl.h
84 0x10 20-2F arch/s390/include/uapi/asm/hypfs.h
91 0x3E 00-0F linux/counter.h <mailto:linux-iio@vger.kernel.…
92 '!' 00-1F uapi/linux/seccomp.h
93 '#' 00-3F IEEE 1394 Subsystem
[all …]
/Linux-v6.6/include/linux/
Dindirect_call_wrapper.h9 * @f: function pointer
10 * @f$NR: builtin functions names, up to $NR of them
11 * @__VA_ARGS__: arguments for @f
13 * Avoid retpoline overhead for known builtin, checking @f vs each of them and
17 #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
[all …]
/Linux-v6.6/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-v6.6/drivers/spi/
Dspi-nxp-fspi.c395 static inline int needs_ip_only(struct nxp_fspi *f) in needs_ip_only() argument
397 return f->devtype_data->quirks & FSPI_QUIRK_USE_IP_ONLY; in needs_ip_only()
407 static void fspi_writel(struct nxp_fspi *f, u32 val, void __iomem *addr) in fspi_writel() argument
409 if (f->devtype_data->little_endian) in fspi_writel()
415 static u32 fspi_readl(struct nxp_fspi *f, void __iomem *addr) in fspi_readl() argument
417 if (f->devtype_data->little_endian) in fspi_readl()
425 struct nxp_fspi *f = dev_id; in nxp_fspi_irq_handler() local
429 reg = fspi_readl(f, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler()
430 fspi_writel(f, FSPI_INTR_IPCMDDONE, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler()
433 complete(&f->c); in nxp_fspi_irq_handler()
[all …]
/Linux-v6.6/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-v6.6/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()
46 || strchr("\a\b\t\n\v\f\r", c)); in isstring()
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()
[all …]
/Linux-v6.6/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-v6.6/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()
122 if (f->offset_y && yi->blanking_dmaptr) { in ivtv_yuv_prep_user_dma()
211 static void ivtv_yuv_handle_horizontal(struct ivtv *itv, struct yuv_frame_info *f) in ivtv_yuv_handle_horizontal() argument
224 f->tru_w, f->src_w, f->dst_w, f->src_x, f->dst_x); in ivtv_yuv_handle_horizontal()
227 x_cutoff = f->src_w + f->src_x; in ivtv_yuv_handle_horizontal()
230 reg_2834 = f->dst_w; in ivtv_yuv_handle_horizontal()
234 reg_2890 = f->dst_x; in ivtv_yuv_handle_horizontal()
245 if (f->vis_w == 720) { in ivtv_yuv_handle_horizontal()
[all …]
/Linux-v6.6/net/sched/
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 …]
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 …]
/Linux-v6.6/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()
36 struct v4l2_pix_format *f = &dev->tch_format; in touch_cap_buf_prepare() local
37 unsigned int size = f->sizeimage; in touch_cap_buf_prepare()
120 int vivid_enum_fmt_tch(struct file *file, void *priv, struct v4l2_fmtdesc *f) in vivid_enum_fmt_tch() argument
122 if (f->index) in vivid_enum_fmt_tch()
125 f->pixelformat = V4L2_TCH_FMT_DELTA_TD16; in vivid_enum_fmt_tch()
129 int vivid_g_fmt_tch(struct file *file, void *priv, struct v4l2_format *f) in vivid_g_fmt_tch() argument
135 f->fmt.pix = dev->tch_format; in vivid_g_fmt_tch()
139 int vivid_g_fmt_tch_mplane(struct file *file, void *priv, struct v4l2_format *f) in vivid_g_fmt_tch_mplane() argument
[all …]
/Linux-v6.6/tools/testing/selftests/powerpc/pmu/ebb/
Dbusy_loop.S94 bne 1f
96 bne 1f
98 bne 1f
100 bne 1f
102 bne 1f
104 bne 1f
106 bne 1f
108 bne 1f
110 bne 1f
112 bne 1f
[all …]
/Linux-v6.6/arch/ia64/kernel/
Dunaligned.c248 # define F(reg) case reg: ia64_invala_gr(reg); break in invala_gr() macro
251 F( 0); F( 1); F( 2); F( 3); F( 4); F( 5); F( 6); F( 7); in invala_gr()
252 F( 8); F( 9); F( 10); F( 11); F( 12); F( 13); F( 14); F( 15); in invala_gr()
253 F( 16); F( 17); F( 18); F( 19); F( 20); F( 21); F( 22); F( 23); in invala_gr()
254 F( 24); F( 25); F( 26); F( 27); F( 28); F( 29); F( 30); F( 31); in invala_gr()
255 F( 32); F( 33); F( 34); F( 35); F( 36); F( 37); F( 38); F( 39); in invala_gr()
256 F( 40); F( 41); F( 42); F( 43); F( 44); F( 45); F( 46); F( 47); in invala_gr()
257 F( 48); F( 49); F( 50); F( 51); F( 52); F( 53); F( 54); F( 55); in invala_gr()
258 F( 56); F( 57); F( 58); F( 59); F( 60); F( 61); F( 62); F( 63); in invala_gr()
259 F( 64); F( 65); F( 66); F( 67); F( 68); F( 69); F( 70); F( 71); in invala_gr()
[all …]
/Linux-v6.6/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-v6.6/drivers/net/wireless/intersil/hostap/
Dhostap_common.h27 #define HFA384X_RID_CNFWDSADDRESS1 0xFC11 /* AP f/w only */
28 #define HFA384X_RID_CNFWDSADDRESS2 0xFC12 /* AP f/w only */
29 #define HFA384X_RID_CNFWDSADDRESS3 0xFC13 /* AP f/w only */
30 #define HFA384X_RID_CNFWDSADDRESS4 0xFC14 /* AP f/w only */
31 #define HFA384X_RID_CNFWDSADDRESS5 0xFC15 /* AP f/w only */
32 #define HFA384X_RID_CNFWDSADDRESS6 0xFC16 /* AP f/w only */
33 #define HFA384X_RID_CNFMULTICASTPMBUFFERING 0xFC17 /* AP f/w only */
44 #define HFA384X_RID_CNFMAXASSOCSTA 0xFC2B /* AP f/w only */
47 #define HFA384X_RID_CNFHOSTAUTHENTICATION 0xFC2E /* AP f/w only */
52 #define HFA384X_RID_CNFAPPCFINFO 0xFC34 /* AP f/w only */
[all …]

12345678910>>...152