| /kernel/linux/linux-5.10/sound/core/seq/ |
| D | seq_fifo.c | 20 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 …]
|
| /kernel/linux/linux-4.19/sound/core/seq/ |
| D | seq_fifo.c | 35 struct snd_seq_fifo *f; in snd_seq_fifo_new() local 37 f = kzalloc(sizeof(*f), GFP_KERNEL); in snd_seq_fifo_new() 38 if (!f) in snd_seq_fifo_new() 41 f->pool = snd_seq_pool_new(poolsize); in snd_seq_fifo_new() 42 if (f->pool == NULL) { in snd_seq_fifo_new() 43 kfree(f); in snd_seq_fifo_new() 46 if (snd_seq_pool_init(f->pool) < 0) { in snd_seq_fifo_new() 47 snd_seq_pool_delete(&f->pool); in snd_seq_fifo_new() 48 kfree(f); in snd_seq_fifo_new() 52 spin_lock_init(&f->lock); in snd_seq_fifo_new() [all …]
|
| /kernel/linux/linux-5.10/ |
| D | MAINTAINERS | 109 F: *Files* and directories wildcard patterns. 111 F: drivers/net/ all files in and below drivers/net 112 F: drivers/net/* all files in drivers/net, but not below 113 F: */net/* all files in "any top level directory"/net 114 One pattern per line. Multiple F: lines acceptable. 116 rules as F:. Files exclusions are tested before file matches. 118 F: net/ 126 match F: pattern and matches of N: patterns. By default, 127 get_maintainer will not look at git log history when an F: pattern 150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst [all …]
|
| /kernel/linux/linux-4.19/ |
| D | MAINTAINERS | 102 F: Files and directories with wildcard patterns. 104 F: drivers/net/ all files in and below drivers/net 105 F: drivers/net/* all files in drivers/net, but not below 106 F: */net/* all files in "any top level directory"/net 107 One pattern per line. Multiple F: lines acceptable. 112 match F: pattern and matches of N: patterns. By default, 113 get_maintainer will not look at git log history when an F: pattern 116 X: Files and directories that are NOT maintained, same rules as F: 119 F: net/ 143 F: Documentation/networking/vortex.txt [all …]
|
| /kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/ |
| D | iwl-debug.h | 38 #define CHECK_FOR_NEWLINE(f) BUILD_BUG_ON(f[sizeof(f) - 2] != '\n') argument 41 #define IWL_ERR_DEV(d, f, a...) \ argument 43 CHECK_FOR_NEWLINE(f); \ 44 __iwl_err((d), false, false, f, ## a); \ 46 #define IWL_ERR(m, f, a...) \ argument 47 IWL_ERR_DEV((m)->dev, f, ## a) 48 #define IWL_WARN(m, f, a...) \ argument 50 CHECK_FOR_NEWLINE(f); \ 51 __iwl_warn((m)->dev, f, ## a); \ 53 #define IWL_INFO(m, f, a...) \ argument [all …]
|
| /kernel/linux/linux-4.19/Documentation/ioctl/ |
| D | ioctl-number.txt | 65 0x00 00-1F linux/fs.h conflict! 66 0x00 00-1F scsi/scsi_ioctl.h conflict! 67 0x00 00-1F linux/fb.h conflict! 68 0x00 00-1F linux/wavefront.h conflict! 74 0x10 00-0F drivers/char/s390/vmcp.h 75 0x10 10-1F arch/s390/include/uapi/sclp_ctl.h 76 0x10 20-2F arch/s390/include/uapi/asm/hypfs.h 82 '#' 00-3F IEEE 1394 Subsystem Block for the entire subsystem 83 '$' 00-0F linux/perf_counter.h, linux/perf_event.h 84 '%' 00-0F include/uapi/linux/stm.h [all …]
|
| /kernel/linux/linux-5.10/drivers/dma-buf/ |
| D | st-dma-fence.c | 22 } *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 …]
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
| D | i915_sw_fence_work.c | 9 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 21 err = f->ops->work(f); in fence_work() 23 dma_fence_set_error(&f->dma, err); in fence_work() 25 fence_complete(f); in fence_work() 26 dma_fence_put(&f->dma); in fence_work() 32 struct dma_fence_work *f = container_of(fence, typeof(*f), chain); in fence_notify() local [all …]
|
| /kernel/linux/linux-5.10/arch/riscv/kernel/ |
| D | asm-offsets.c | 36 OFFSET(TASK_THREAD_F0, task_struct, thread.fstate.f[0]); in asm_offsets() 37 OFFSET(TASK_THREAD_F1, task_struct, thread.fstate.f[1]); in asm_offsets() 38 OFFSET(TASK_THREAD_F2, task_struct, thread.fstate.f[2]); in asm_offsets() 39 OFFSET(TASK_THREAD_F3, task_struct, thread.fstate.f[3]); in asm_offsets() 40 OFFSET(TASK_THREAD_F4, task_struct, thread.fstate.f[4]); in asm_offsets() 41 OFFSET(TASK_THREAD_F5, task_struct, thread.fstate.f[5]); in asm_offsets() 42 OFFSET(TASK_THREAD_F6, task_struct, thread.fstate.f[6]); in asm_offsets() 43 OFFSET(TASK_THREAD_F7, task_struct, thread.fstate.f[7]); in asm_offsets() 44 OFFSET(TASK_THREAD_F8, task_struct, thread.fstate.f[8]); in asm_offsets() 45 OFFSET(TASK_THREAD_F9, task_struct, thread.fstate.f[9]); in asm_offsets() [all …]
|
| /kernel/linux/linux-4.19/drivers/net/wireless/intel/iwlwifi/ |
| D | iwl-debug.h | 52 #define CHECK_FOR_NEWLINE(f) BUILD_BUG_ON(f[sizeof(f) - 2] != '\n') argument 55 #define IWL_ERR_DEV(d, f, a...) \ argument 57 CHECK_FOR_NEWLINE(f); \ 58 __iwl_err((d), false, false, f, ## a); \ 60 #define IWL_ERR(m, f, a...) \ argument 61 IWL_ERR_DEV((m)->dev, f, ## a) 62 #define IWL_WARN(m, f, a...) \ argument 64 CHECK_FOR_NEWLINE(f); \ 65 __iwl_warn((m)->dev, f, ## a); \ 67 #define IWL_INFO(m, f, a...) \ argument [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/chelsio/cxgb4/ |
| D | cxgb4_filter.c | 56 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 …]
|
| /kernel/linux/linux-5.10/Documentation/userspace-api/ioctl/ |
| D | ioctl-number.rst | 73 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 '!' 00-1F uapi/linux/seccomp.h 92 '#' 00-3F IEEE 1394 Subsystem 94 '$' 00-0F linux/perf_counter.h, linux/perf_event.h [all …]
|
| /kernel/linux/linux-4.19/arch/riscv/kernel/ |
| D | asm-offsets.c | 46 OFFSET(TASK_THREAD_F0, task_struct, thread.fstate.f[0]); in asm_offsets() 47 OFFSET(TASK_THREAD_F1, task_struct, thread.fstate.f[1]); in asm_offsets() 48 OFFSET(TASK_THREAD_F2, task_struct, thread.fstate.f[2]); in asm_offsets() 49 OFFSET(TASK_THREAD_F3, task_struct, thread.fstate.f[3]); in asm_offsets() 50 OFFSET(TASK_THREAD_F4, task_struct, thread.fstate.f[4]); in asm_offsets() 51 OFFSET(TASK_THREAD_F5, task_struct, thread.fstate.f[5]); in asm_offsets() 52 OFFSET(TASK_THREAD_F6, task_struct, thread.fstate.f[6]); in asm_offsets() 53 OFFSET(TASK_THREAD_F7, task_struct, thread.fstate.f[7]); in asm_offsets() 54 OFFSET(TASK_THREAD_F8, task_struct, thread.fstate.f[8]); in asm_offsets() 55 OFFSET(TASK_THREAD_F9, task_struct, thread.fstate.f[9]); in asm_offsets() [all …]
|
| /kernel/linux/linux-5.10/net/sched/ |
| D | cls_fw.c | 54 struct fw_filter *f; in fw_classify() local 61 for (f = rcu_dereference_bh(head->ht[fw_hash(id)]); f; in fw_classify() 62 f = rcu_dereference_bh(f->next)) { in fw_classify() 63 if (f->id == id) { in fw_classify() 64 *res = f->res; in fw_classify() 65 if (!tcf_match_indev(skb, f->ifindex)) in fw_classify() 67 r = tcf_exts_exec(skb, &f->exts, res); in fw_classify() 92 struct fw_filter *f; in fw_get() local 97 f = rtnl_dereference(head->ht[fw_hash(handle)]); in fw_get() 98 for (; f; f = rtnl_dereference(f->next)) { in fw_get() [all …]
|
| D | cls_route.c | 77 struct route4_filter *f) in route4_set_fastmap() argument 85 head->fastmap[h].filter = f; in route4_set_fastmap() 111 *res = f->res; \ 112 if (tcf_exts_has_actions(&f->exts)) { \ 113 int r = tcf_exts_exec(skb, &f->exts, res); \ 120 route4_set_fastmap(head, id, iif, f); \ 130 struct route4_filter *f; in route4_classify() local 147 (f = head->fastmap[h].filter) != NULL) { in route4_classify() 148 if (f == ROUTE4_FAILURE) { in route4_classify() 153 *res = f->res; in route4_classify() [all …]
|
| /kernel/linux/linux-4.19/net/sched/ |
| D | cls_fw.c | 64 struct fw_filter *f; in fw_classify() local 71 for (f = rcu_dereference_bh(head->ht[fw_hash(id)]); f; in fw_classify() 72 f = rcu_dereference_bh(f->next)) { in fw_classify() 73 if (f->id == id) { in fw_classify() 74 *res = f->res; in fw_classify() 76 if (!tcf_match_indev(skb, f->ifindex)) in fw_classify() 79 r = tcf_exts_exec(skb, &f->exts, res); in fw_classify() 104 struct fw_filter *f; in fw_get() local 109 f = rtnl_dereference(head->ht[fw_hash(handle)]); in fw_get() 110 for (; f; f = rtnl_dereference(f->next)) { in fw_get() [all …]
|
| D | cls_route.c | 81 struct route4_filter *f) in route4_set_fastmap() argument 89 head->fastmap[h].filter = f; in route4_set_fastmap() 115 *res = f->res; \ 116 if (tcf_exts_has_actions(&f->exts)) { \ 117 int r = tcf_exts_exec(skb, &f->exts, res); \ 124 route4_set_fastmap(head, id, iif, f); \ 134 struct route4_filter *f; in route4_classify() local 151 (f = head->fastmap[h].filter) != NULL) { in route4_classify() 152 if (f == ROUTE4_FAILURE) { in route4_classify() 157 *res = f->res; in route4_classify() [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | indirect_call_wrapper.h | 9 * @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 …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/ |
| D | cxgb4_filter.c | 56 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 …]
|
| /kernel/linux/linux-4.19/scripts/dtc/ |
| D | treesource.c | 37 yyin = current_srcfile->f; in dt_from_source() 49 static void write_prefix(FILE *f, int level) in write_prefix() argument 54 fputc('\t', f); in write_prefix() 61 || strchr("\a\b\t\n\v\f\r", c)); in isstring() 64 static void write_propval_string(FILE *f, struct data val) in write_propval_string() argument 74 fprintf(f, "%s: ", m->ref); in write_propval_string() 77 fprintf(f, "\""); in write_propval_string() 84 fprintf(f, "\\a"); in write_propval_string() 87 fprintf(f, "\\b"); in write_propval_string() 90 fprintf(f, "\\t"); in write_propval_string() [all …]
|
| /kernel/linux/linux-5.10/drivers/spi/ |
| D | spi-nxp-fspi.c | 369 static void fspi_writel(struct nxp_fspi *f, u32 val, void __iomem *addr) in fspi_writel() argument 371 if (f->devtype_data->little_endian) in fspi_writel() 377 static u32 fspi_readl(struct nxp_fspi *f, void __iomem *addr) in fspi_readl() argument 379 if (f->devtype_data->little_endian) in fspi_readl() 387 struct nxp_fspi *f = dev_id; in nxp_fspi_irq_handler() local 391 reg = fspi_readl(f, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler() 392 fspi_writel(f, FSPI_INTR_IPCMDDONE, f->iobase + FSPI_INTR); in nxp_fspi_irq_handler() 395 complete(&f->c); in nxp_fspi_irq_handler() 400 static int nxp_fspi_check_buswidth(struct nxp_fspi *f, u8 width) in nxp_fspi_check_buswidth() argument 416 struct nxp_fspi *f = spi_controller_get_devdata(mem->spi->master); in nxp_fspi_supports_op() local [all …]
|
| /kernel/linux/linux-4.19/drivers/media/pci/ivtv/ |
| D | ivtv-yuv.c | 44 struct yuv_frame_info *f = &yi->new_frame_info[frame]; in ivtv_yuv_prep_user_dma() local 53 y_decode_height = uv_decode_height = f->src_h + f->src_y; in ivtv_yuv_prep_user_dma() 55 if (f->offset_y) in ivtv_yuv_prep_user_dma() 139 if (f->offset_y && yi->blanking_dmaptr) { in ivtv_yuv_prep_user_dma() 228 static void ivtv_yuv_handle_horizontal(struct ivtv *itv, struct yuv_frame_info *f) in ivtv_yuv_handle_horizontal() argument 241 f->tru_w, f->src_w, f->dst_w, f->src_x, f->dst_x); in ivtv_yuv_handle_horizontal() 244 x_cutoff = f->src_w + f->src_x; in ivtv_yuv_handle_horizontal() 247 reg_2834 = f->dst_w; in ivtv_yuv_handle_horizontal() 251 reg_2890 = f->dst_x; in ivtv_yuv_handle_horizontal() 262 if (f->vis_w == 720) { in ivtv_yuv_handle_horizontal() [all …]
|
| /kernel/linux/linux-5.10/drivers/media/pci/ivtv/ |
| D | ivtv-yuv.c | 32 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 …]
|
| /kernel/linux/linux-5.10/scripts/dtc/ |
| D | treesource.c | 22 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 …]
|
| /kernel/linux/linux-5.10/drivers/media/test-drivers/vivid/ |
| D | vivid-touch-cap.c | 16 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 …]
|