/kernel/linux/linux-6.6/drivers/net/ethernet/sunplus/ |
H A D | spl2sw_desc.c | 13 void spl2sw_rx_descs_flush(struct spl2sw_common *comm) in spl2sw_rx_descs_flush() argument 20 rx_desc = comm->rx_desc[i]; in spl2sw_rx_descs_flush() 21 rx_skbinfo = comm->rx_skb_info[i]; in spl2sw_rx_descs_flush() 22 for (j = 0; j < comm->rx_desc_num[i]; j++) { in spl2sw_rx_descs_flush() 24 rx_desc[j].cmd2 = (j == comm->rx_desc_num[i] - 1) ? in spl2sw_rx_descs_flush() 25 RXD_EOR | comm->rx_desc_buff_size : in spl2sw_rx_descs_flush() 26 comm->rx_desc_buff_size; in spl2sw_rx_descs_flush() 33 void spl2sw_tx_descs_clean(struct spl2sw_common *comm) in spl2sw_tx_descs_clean() argument 37 if (!comm->tx_desc) in spl2sw_tx_descs_clean() 41 comm in spl2sw_tx_descs_clean() 60 spl2sw_rx_descs_clean(struct spl2sw_common *comm) spl2sw_rx_descs_clean() argument 92 spl2sw_descs_clean(struct spl2sw_common *comm) spl2sw_descs_clean() argument 98 spl2sw_descs_free(struct spl2sw_common *comm) spl2sw_descs_free() argument 117 spl2sw_tx_descs_init(struct spl2sw_common *comm) spl2sw_tx_descs_init() argument 123 spl2sw_rx_descs_init(struct spl2sw_common *comm) spl2sw_rx_descs_init() argument 169 spl2sw_descs_alloc(struct spl2sw_common *comm) spl2sw_descs_alloc() argument 197 spl2sw_descs_init(struct spl2sw_common *comm) spl2sw_descs_init() argument [all...] |
H A D | spl2sw_mac.c | 16 void spl2sw_mac_hw_stop(struct spl2sw_common *comm) in spl2sw_mac_hw_stop() argument 20 if (comm->enable == 0) { in spl2sw_mac_hw_stop() 22 writel(0xffffffff, comm->l2sw_reg_base + L2SW_SW_INT_MASK_0); in spl2sw_mac_hw_stop() 23 writel(0xffffffff, comm->l2sw_reg_base + L2SW_SW_INT_STATUS_0); in spl2sw_mac_hw_stop() 26 reg = readl(comm->l2sw_reg_base + L2SW_CPU_CNTL); in spl2sw_mac_hw_stop() 28 writel(reg, comm->l2sw_reg_base + L2SW_CPU_CNTL); in spl2sw_mac_hw_stop() 32 reg = readl(comm->l2sw_reg_base + L2SW_PORT_CNTL0); in spl2sw_mac_hw_stop() 33 reg |= FIELD_PREP(MAC_DIS_PORT, ~comm->enable); in spl2sw_mac_hw_stop() 34 writel(reg, comm->l2sw_reg_base + L2SW_PORT_CNTL0); in spl2sw_mac_hw_stop() 37 void spl2sw_mac_hw_start(struct spl2sw_common *comm) in spl2sw_mac_hw_start() argument 55 struct spl2sw_common *comm = mac->comm; spl2sw_mac_addr_add() local 90 struct spl2sw_common *comm = mac->comm; spl2sw_mac_addr_del() local 124 spl2sw_mac_hw_init(struct spl2sw_common *comm) spl2sw_mac_hw_init() argument 220 struct spl2sw_common *comm = mac->comm; spl2sw_mac_rx_mode_set() local 246 spl2sw_mac_init(struct spl2sw_common *comm) spl2sw_mac_init() argument 257 spl2sw_mac_soft_reset(struct spl2sw_common *comm) spl2sw_mac_soft_reset() argument [all...] |
H A D | spl2sw_int.c | 19 struct spl2sw_common *comm = container_of(napi, struct spl2sw_common, rx_napi); in spl2sw_rx_poll() local 36 rx_pos = comm->rx_pos[queue]; in spl2sw_rx_poll() 37 rx_count = comm->rx_desc_num[queue]; in spl2sw_rx_poll() 40 sinfo = comm->rx_skb_info[queue] + rx_pos; in spl2sw_rx_poll() 41 desc = comm->rx_desc[queue] + rx_pos; in spl2sw_rx_poll() 48 if (port < MAX_NETDEV_NUM && comm->ndev[port]) in spl2sw_rx_poll() 49 stats = &comm->ndev[port]->stats; in spl2sw_rx_poll() 60 dma_unmap_single(&comm->pdev->dev, sinfo->mapping, in spl2sw_rx_poll() 61 comm->rx_desc_buff_size, DMA_FROM_DEVICE); in spl2sw_rx_poll() 66 skb->protocol = eth_type_trans(skb, comm in spl2sw_rx_poll() 140 struct spl2sw_common *comm = container_of(napi, struct spl2sw_common, tx_napi); spl2sw_tx_poll() local 213 struct spl2sw_common *comm = (struct spl2sw_common *)dev_id; spl2sw_ethernet_interrupt() local [all...] |
H A D | spl2sw_driver.c | 28 struct spl2sw_common *comm = mac->comm; in spl2sw_ethernet_open() local 33 comm->enable |= mac->lan_port; in spl2sw_ethernet_open() 35 spl2sw_mac_hw_start(comm); in spl2sw_ethernet_open() 38 mask = readl(comm->l2sw_reg_base + L2SW_SW_INT_MASK_0); in spl2sw_ethernet_open() 40 writel(mask, comm->l2sw_reg_base + L2SW_SW_INT_MASK_0); in spl2sw_ethernet_open() 52 struct spl2sw_common *comm = mac->comm; in spl2sw_ethernet_stop() local 56 comm->enable &= ~mac->lan_port; in spl2sw_ethernet_stop() 60 spl2sw_mac_hw_stop(comm); in spl2sw_ethernet_stop() 69 struct spl2sw_common *comm = mac->comm; spl2sw_ethernet_start_xmit() local 171 struct spl2sw_common *comm = mac->comm; spl2sw_ethernet_tx_timeout() local 324 struct spl2sw_common *comm; spl2sw_probe() local 516 struct spl2sw_common *comm; spl2sw_remove() local [all...] |
H A D | spl2sw_mdio.c | 18 static int spl2sw_mdio_access(struct spl2sw_common *comm, u8 cmd, u8 addr, u8 regnum, u16 wdata) in spl2sw_mdio_access() argument 27 reg = readl(comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mdio_access() 37 spin_lock_irq(&comm->mdio_lock); in spl2sw_mdio_access() 38 writel(reg, comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mdio_access() 39 writel(reg2, comm->l2sw_reg_base + L2SW_PHY_CNTL_REG0); in spl2sw_mdio_access() 40 spin_unlock_irq(&comm->mdio_lock); in spl2sw_mdio_access() 43 comm->l2sw_reg_base + L2SW_PHY_CNTL_REG1); in spl2sw_mdio_access() 49 reg = readl(comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mdio_access() 52 writel(reg, comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mdio_access() 62 struct spl2sw_common *comm in spl2sw_mii_read() local 69 struct spl2sw_common *comm = bus->priv; spl2sw_mii_write() local 79 spl2sw_mdio_init(struct spl2sw_common *comm) spl2sw_mdio_init() argument 119 spl2sw_mdio_remove(struct spl2sw_common *comm) spl2sw_mdio_remove() argument [all...] |
H A D | spl2sw_desc.h | 9 void spl2sw_rx_descs_flush(struct spl2sw_common *comm); 10 void spl2sw_tx_descs_clean(struct spl2sw_common *comm); 11 void spl2sw_rx_descs_clean(struct spl2sw_common *comm); 12 void spl2sw_descs_clean(struct spl2sw_common *comm); 13 void spl2sw_descs_free(struct spl2sw_common *comm); 14 void spl2sw_tx_descs_init(struct spl2sw_common *comm); 15 int spl2sw_rx_descs_init(struct spl2sw_common *comm); 16 int spl2sw_descs_alloc(struct spl2sw_common *comm); 17 int spl2sw_descs_init(struct spl2sw_common *comm);
|
H A D | spl2sw_phy.c | 18 struct spl2sw_common *comm = mac->comm; in spl2sw_mii_link_change() local 21 reg = readl(comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mii_link_change() 51 writel(reg, comm->l2sw_reg_base + L2SW_MAC_FORCE_MODE); in spl2sw_mii_link_change() 56 int spl2sw_phy_connect(struct spl2sw_common *comm) in spl2sw_phy_connect() argument 64 if (comm->ndev[i]) { in spl2sw_phy_connect() 65 ndev = comm->ndev[i]; in spl2sw_phy_connect() 79 void spl2sw_phy_remove(struct spl2sw_common *comm) in spl2sw_phy_remove() argument 85 if (comm->ndev[i]) { in spl2sw_phy_remove() 86 ndev = comm in spl2sw_phy_remove() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | comm.c | 2 #include "comm.h" 108 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() 110 struct comm *comm = zalloc(sizeof(*comm)); in comm__new() local 112 if (!comm) in comm__new() 115 comm->start = timestamp; in comm__new() 116 comm->exec = exec; in comm__new() 118 comm->comm_str = comm_str__findnew(str, &comm_str_root); in comm__new() 119 if (!comm in comm__new() 127 comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) comm__override() argument 144 comm__free(struct comm *comm) comm__free() argument 150 comm__str(const struct comm *comm) comm__str() argument [all...] |
H A D | db-export.c | 14 #include "comm.h" 82 static int __db_export__comm(struct db_export *dbe, struct comm *comm, in __db_export__comm() argument 85 comm->db_id = ++dbe->comm_last_db_id; in __db_export__comm() 88 return dbe->export_comm(dbe, comm, thread); in __db_export__comm() 93 int db_export__comm(struct db_export *dbe, struct comm *comm, in db_export__comm() argument 96 if (comm->db_id) in db_export__comm() 99 return __db_export__comm(dbe, comm, thread); in db_export__comm() 103 * Export the "exec" comm 108 db_export__exec_comm(struct db_export *dbe, struct comm *comm, struct thread *main_thread) db_export__exec_comm() argument 133 db_export__comm_thread(struct db_export *dbe, struct comm *comm, struct thread *thread) db_export__comm_thread() argument 294 struct comm *comm = NULL; db_export__threads() local 356 struct comm *comm = NULL; db_export__sample() local [all...] |
H A D | thread.c | 14 #include "comm.h" 42 struct comm *comm; in thread__new() local 61 comm = comm__new(comm_str, 0, false); in thread__new() 63 if (!comm) in thread__new() 66 list_add(&comm->list, &thread->comm_list); in thread__new() 84 struct comm *comm, *tmp_comm; in thread__delete() local 103 list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) { in thread__delete() 104 list_del_init(&comm in thread__delete() 218 struct comm *comm, *last = NULL, *second_last = NULL; thread__exec_comm() local 278 char *comm = NULL; thread__set_comm_from_proc() local 294 const struct comm *comm = thread__comm(thread); __thread__comm_str() local 317 const char *comm = thread__comm_str(thread); thread__comm_len() local 394 const char *comm = thread__comm_str(parent); thread__fork() local [all...] |
H A D | comm.h | 11 struct comm { struct 22 void comm__free(struct comm *comm); 23 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 24 const char *comm__str(const struct comm *comm); 25 int comm__override(struct comm *comm, const char *str, u64 timestamp,
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | comm.c | 2 #include "comm.h" 108 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() 110 struct comm *comm = zalloc(sizeof(*comm)); in comm__new() local 112 if (!comm) in comm__new() 115 comm->start = timestamp; in comm__new() 116 comm->exec = exec; in comm__new() 118 comm->comm_str = comm_str__findnew(str, &comm_str_root); in comm__new() 119 if (!comm in comm__new() 127 comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) comm__override() argument 144 comm__free(struct comm *comm) comm__free() argument 150 comm__str(const struct comm *comm) comm__str() argument [all...] |
H A D | thread.c | 14 #include "comm.h" 43 struct comm *comm; in thread__new() local 64 comm = comm__new(comm_str, 0, false); in thread__new() 66 if (!comm) in thread__new() 69 list_add(&comm->list, thread__comm_list(thread)); in thread__new() 95 struct comm *comm, *tmp_comm; in thread__delete() local 112 list_for_each_entry_safe(comm, tmp_comm, thread__comm_list(thread), list) { in thread__delete() 113 list_del_init(&comm in thread__delete() 213 struct comm *comm, *last = NULL, *second_last = NULL; thread__exec_comm() local 273 char *comm = NULL; thread__set_comm_from_proc() local 289 const struct comm *comm = thread__comm(thread); __thread__comm_str() local 308 __thread__comm_len(struct thread *thread, const char *comm) __thread__comm_len() argument 323 const char *comm; thread__comm_len() local 401 const char *comm = thread__comm_str(parent); thread__fork() local [all...] |
H A D | db-export.c | 14 #include "comm.h" 82 static int __db_export__comm(struct db_export *dbe, struct comm *comm, in __db_export__comm() argument 85 comm->db_id = ++dbe->comm_last_db_id; in __db_export__comm() 88 return dbe->export_comm(dbe, comm, thread); in __db_export__comm() 93 int db_export__comm(struct db_export *dbe, struct comm *comm, in db_export__comm() argument 96 if (comm->db_id) in db_export__comm() 99 return __db_export__comm(dbe, comm, thread); in db_export__comm() 103 * Export the "exec" comm 108 db_export__exec_comm(struct db_export *dbe, struct comm *comm, struct thread *main_thread) db_export__exec_comm() argument 133 db_export__comm_thread(struct db_export *dbe, struct comm *comm, struct thread *thread) db_export__comm_thread() argument 298 struct comm *comm = NULL; db_export__threads() local 360 struct comm *comm = NULL; db_export__sample() local [all...] |
H A D | comm.h | 11 struct comm { struct 22 void comm__free(struct comm *comm); 23 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 24 const char *comm__str(const struct comm *comm); 25 int comm__override(struct comm *comm, const char *str, u64 timestamp,
|
/kernel/linux/linux-5.10/drivers/staging/media/meson/vdec/ |
H A D | codec_hevc_common.c | 57 struct codec_hevc_common *comm, in codec_hevc_setup_buffers_gxbb() 77 buf_y_paddr = comm->fbc_buffer_paddr[idx]; in codec_hevc_setup_buffers_gxbb() 112 struct codec_hevc_common *comm, in codec_hevc_setup_buffers_gxl() 131 buf_y_paddr = comm->mmu_header_paddr[idx]; in codec_hevc_setup_buffers_gxl() 133 buf_y_paddr = comm->fbc_buffer_paddr[idx]; in codec_hevc_setup_buffers_gxl() 154 struct codec_hevc_common *comm) in codec_hevc_free_fbc_buffers() 161 if (comm->fbc_buffer_vaddr[i]) { in codec_hevc_free_fbc_buffers() 163 comm->fbc_buffer_vaddr[i], in codec_hevc_free_fbc_buffers() 164 comm->fbc_buffer_paddr[i]); in codec_hevc_free_fbc_buffers() 165 comm in codec_hevc_free_fbc_buffers() 56 codec_hevc_setup_buffers_gxbb(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers_gxbb() argument 111 codec_hevc_setup_buffers_gxl(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers_gxl() argument 153 codec_hevc_free_fbc_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_free_fbc_buffers() argument 171 codec_hevc_alloc_fbc_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_alloc_fbc_buffers() argument 195 codec_hevc_free_mmu_headers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_free_mmu_headers() argument 219 codec_hevc_alloc_mmu_headers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_alloc_mmu_headers() argument 248 codec_hevc_setup_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers() argument 279 codec_hevc_fill_mmu_map(struct amvdec_session *sess, struct codec_hevc_common *comm, struct vb2_buffer *vb) codec_hevc_fill_mmu_map() argument [all...] |
/kernel/linux/linux-6.6/drivers/staging/media/meson/vdec/ |
H A D | codec_hevc_common.c | 57 struct codec_hevc_common *comm, in codec_hevc_setup_buffers_gxbb() 77 buf_y_paddr = comm->fbc_buffer_paddr[idx]; in codec_hevc_setup_buffers_gxbb() 112 struct codec_hevc_common *comm, in codec_hevc_setup_buffers_gxl() 131 buf_y_paddr = comm->mmu_header_paddr[idx]; in codec_hevc_setup_buffers_gxl() 133 buf_y_paddr = comm->fbc_buffer_paddr[idx]; in codec_hevc_setup_buffers_gxl() 154 struct codec_hevc_common *comm) in codec_hevc_free_fbc_buffers() 161 if (comm->fbc_buffer_vaddr[i]) { in codec_hevc_free_fbc_buffers() 163 comm->fbc_buffer_vaddr[i], in codec_hevc_free_fbc_buffers() 164 comm->fbc_buffer_paddr[i]); in codec_hevc_free_fbc_buffers() 165 comm in codec_hevc_free_fbc_buffers() 56 codec_hevc_setup_buffers_gxbb(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers_gxbb() argument 111 codec_hevc_setup_buffers_gxl(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers_gxl() argument 153 codec_hevc_free_fbc_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_free_fbc_buffers() argument 171 codec_hevc_alloc_fbc_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_alloc_fbc_buffers() argument 195 codec_hevc_free_mmu_headers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_free_mmu_headers() argument 219 codec_hevc_alloc_mmu_headers(struct amvdec_session *sess, struct codec_hevc_common *comm) codec_hevc_alloc_mmu_headers() argument 248 codec_hevc_setup_buffers(struct amvdec_session *sess, struct codec_hevc_common *comm, int is_10bit) codec_hevc_setup_buffers() argument 279 codec_hevc_fill_mmu_map(struct amvdec_session *sess, struct codec_hevc_common *comm, struct vb2_buffer *vb) codec_hevc_fill_mmu_map() argument [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/perl/ |
H A D | rw-by-pid.pl | 48 $reads{$common_pid}{comm} = $common_comm; 70 $writes{$common_pid}{comm} = $common_comm; 77 printf("%6s %20s %10s %10s %10s\n", "pid", "comm", 84 my $comm = $reads{$pid}{comm} || ""; 89 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm, 95 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors"); 103 my $comm = $reads{$pid}{comm} || ""; 105 push @errcounts, [$pid, $comm, [all...] |
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | keep-tracking.c | 33 static int find_comm(struct evlist *evlist, const char *comm) in find_comm() argument 46 (pid_t)event->comm.pid == getpid() && in find_comm() 47 (pid_t)event->comm.tid == getpid() && in find_comm() 48 strcmp(event->comm.comm, comm) == 0) in find_comm() 79 const char *comm; in test__keep_tracking() local 99 evsel->core.attr.comm = 1; in test__keep_tracking() 112 * First, test that a 'comm' event can be found when the event is in test__keep_tracking() 118 comm in test__keep_tracking() [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/perl/ |
H A D | rw-by-pid.pl | 48 $reads{$common_pid}{comm} = $common_comm; 70 $writes{$common_pid}{comm} = $common_comm; 77 printf("%6s %20s %10s %10s %10s\n", "pid", "comm", 84 my $comm = $reads{$pid}{comm} || ""; 89 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm, 95 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors"); 103 my $comm = $reads{$pid}{comm} || ""; 105 push @errcounts, [$pid, $comm, [all...] |
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | keep-tracking.c | 33 static int find_comm(struct evlist *evlist, const char *comm) in find_comm() argument 46 (pid_t)event->comm.pid == getpid() && in find_comm() 47 (pid_t)event->comm.tid == getpid() && in find_comm() 48 strcmp(event->comm.comm, comm) == 0) in find_comm() 79 const char *comm; in test__keep_tracking() local 99 evsel->core.attr.comm = 1; in test__keep_tracking() 112 * First, test that a 'comm' event can be found when the event is in test__keep_tracking() 118 comm in test__keep_tracking() [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | netdev-times.py | 138 if 'comm' in event.keys(): 142 event['pid'], event['comm'])) 232 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 238 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 244 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 250 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm, 252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | netdev-times.py | 138 if 'comm' in event.keys(): 142 event['pid'], event['comm'])) 232 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 238 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 244 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, callchain, vec): 247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 250 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm, 252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, [all...] |
/kernel/linux/linux-5.10/include/trace/events/ |
H A D | block.h | 159 __array( char, comm, TASK_COMM_LEN ) 171 memcpy(__entry->comm, current->comm, TASK_COMM_LEN); 178 __entry->nr_sector, __entry->comm) 247 __array( char, comm, TASK_COMM_LEN ) 255 memcpy(__entry->comm, current->comm, TASK_COMM_LEN); 261 __entry->nr_sector, __entry->comm) 311 __array( char, comm, TASK_COMM_LEN ) 319 memcpy(__entry->comm, curren [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | EventClass.py | 26 def create_event(name, comm, dso, symbol, raw_buf): 28 event = PebsEvent(name, comm, dso, symbol, raw_buf) 30 event = PebsNHM(name, comm, dso, symbol, raw_buf) 32 event = PerfEvent(name, comm, dso, symbol, raw_buf) 38 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC): 40 self.comm = comm 48 print("PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % 49 (self.name, self.symbol, self.comm, self.dso)) 58 def __init__(self, name, comm, ds [all...] |