| /linux/tools/perf/util/ |
| H A D | jitdump.c | 70 jit_emit_elf(struct jit_buf_desc *jd, in jit_emit_elf() argument 88 nsinfo__mountns_enter(jd->nsi, &nsc); in jit_emit_elf() 104 nsinfo__mountns_enter(jd->nsi, &nsc); in jit_emit_elf() 113 jit_close(struct jit_buf_desc *jd) in jit_close() argument 115 if (!(jd && jd->in)) in jit_close() 117 funlockfile(jd->in); in jit_close() 118 fclose(jd->in); in jit_close() 119 jd->in = NULL; in jit_close() 138 jit_open(struct jit_buf_desc *jd, cons argument 251 jit_get_next_entry(struct jit_buf_desc * jd) jit_get_next_entry() argument 368 jit_inject_event(struct jit_buf_desc * jd,union perf_event * event) jit_inject_event() argument 380 jr_entry_pid(struct jit_buf_desc * jd,union jr_entry * jr) jr_entry_pid() argument 387 jr_entry_tid(struct jit_buf_desc * jd,union jr_entry * jr) jr_entry_tid() argument 394 convert_timestamp(struct jit_buf_desc * jd,uint64_t timestamp) convert_timestamp() argument 425 jit_repipe_code_load(struct jit_buf_desc * jd,union jr_entry * jr) jit_repipe_code_load() argument 560 jit_repipe_code_move(struct jit_buf_desc * jd,union jr_entry * jr) jit_repipe_code_move() argument 651 jit_repipe_debug_info(struct jit_buf_desc * jd,union jr_entry * jr) jit_repipe_debug_info() argument 678 jit_repipe_unwinding_info(struct jit_buf_desc * jd,union jr_entry * jr) jit_repipe_unwinding_info() argument 704 jit_process_dump(struct jit_buf_desc * jd) jit_process_dump() argument 732 jit_inject(struct jit_buf_desc * jd,const char * path) jit_inject() argument 856 struct jit_buf_desc jd; jit_process() local [all...] |
| /linux/fs/gfs2/ |
| H A D | recovery.c | 32 int gfs2_replay_read_block(struct gfs2_jdesc *jd, unsigned int blk, in gfs2_replay_read_block() argument 35 struct gfs2_inode *ip = GFS2_I(jd->jd_inode); in gfs2_replay_read_block() 55 int gfs2_revoke_add(struct gfs2_jdesc *jd, u64 blkno, unsigned int where) in gfs2_revoke_add() argument 57 struct list_head *head = &jd->jd_revoke_list; in gfs2_revoke_add() 83 int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where) in gfs2_revoke_check() argument 88 list_for_each_entry(iter, &jd->jd_revoke_list, rr_list) { in gfs2_revoke_check() 98 wrap = (rr->rr_where < jd->jd_replay_tail); in gfs2_revoke_check() 99 a = (jd->jd_replay_tail < where); in gfs2_revoke_check() 106 void gfs2_revoke_clean(struct gfs2_jdesc *jd) in gfs2_revoke_clean() argument 108 struct list_head *head = &jd->jd_revoke_list; in gfs2_revoke_clean() [all …]
|
| H A D | super.c | 62 struct gfs2_jdesc *jd; in gfs2_jindex_free() local 75 jd = list_first_entry(&list, struct gfs2_jdesc, jd_list); in gfs2_jindex_free() 76 BUG_ON(jd->jd_log_bio); in gfs2_jindex_free() 77 gfs2_free_journal_extents(jd); in gfs2_jindex_free() 78 list_del(&jd->jd_list); in gfs2_jindex_free() 79 iput(jd->jd_inode); in gfs2_jindex_free() 80 jd->jd_inode = NULL; in gfs2_jindex_free() 81 kfree(jd); in gfs2_jindex_free() 87 struct gfs2_jdesc *jd; in jdesc_find_i() local 89 list_for_each_entry(jd, head, jd_list) { in jdesc_find_i() [all …]
|
| H A D | bmap.h | 67 int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd); 68 void gfs2_free_journal_extents(struct gfs2_jdesc *jd);
|
| H A D | bmap.c | 2217 void gfs2_free_journal_extents(struct gfs2_jdesc *jd) in gfs2_free_journal_extents() argument 2221 while(!list_empty(&jd->extent_list)) { in gfs2_free_journal_extents() 2222 jext = list_first_entry(&jd->extent_list, struct gfs2_journal_extent, list); in gfs2_free_journal_extents() 2238 static int gfs2_add_jextent(struct gfs2_jdesc *jd, u64 lblock, u64 dblock, u64 blocks) in gfs2_add_jextent() argument 2242 if (!list_empty(&jd->extent_list)) { in gfs2_add_jextent() 2243 jext = list_last_entry(&jd->extent_list, struct gfs2_journal_extent, list); in gfs2_add_jextent() 2256 list_add_tail(&jext->list, &jd->extent_list); in gfs2_add_jextent() 2257 jd->nr_extents++; in gfs2_add_jextent() 2281 int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd) in gfs2_map_journal_extents() argument 2285 struct gfs2_inode *ip = GFS2_I(jd->jd_inode); in gfs2_map_journal_extents() [all …]
|
| /linux/tools/perf/pmu-events/ |
| H A D | jevents.py | 206 def __init__(self, jd: dict): 328 if 'EventCode' in jd: 329 eventcode = int(jd['EventCode'].split(',', 1)[0], 0) 330 if 'ExtSel' in jd: 331 eventcode |= int(jd['ExtSel']) << 8 332 configcode = int(jd['ConfigCode'], 0) if 'ConfigCode' in jd else None 333 eventidcode = int(jd['EventidCode'], 0) if 'EventidCode' in jd else None 334 legacy_hw_config = int(jd['LegacyConfigCod [all...] |
| /linux/Documentation/translations/zh_CN/maintainer/ |
| H A D | configure-git.rst | 26 email = jd@domain.org 27 signingkey = jd@domain.org
|
| /linux/Documentation/devicetree/bindings/sound/ |
| H A D | rt5668.txt | 24 - realtek,jd-src 49 realtek,jd-src = <1>;
|
| H A D | rt5665.txt | 31 - realtek,jd-src
|
| /linux/arch/powerpc/kvm/ |
| H A D | emulate.c | 65 u64 jd = tb - vcpu->arch.dec_jiffies; in kvmppc_get_dec() local 68 if (vcpu->arch.dec < jd) in kvmppc_get_dec() 72 return vcpu->arch.dec - jd; in kvmppc_get_dec()
|
| /linux/arch/arm64/boot/dts/qcom/ |
| H A D | sc7180-trogdor-rt5682i-sku.dtsi | 32 realtek,jd-src = <1>;
|
| H A D | sc7180-trogdor-rt5682s-sku.dtsi | 32 realtek,jd-src = <1>;
|
| H A D | sc7280-herobrine-audio-rt5682.dtsi | 85 realtek,jd-src = <1>;
|
| H A D | sc7280-herobrine-audio-rt5682-3mic.dtsi | 103 realtek,jd-src = <1>;
|
| /linux/arch/arm64/boot/dts/mediatek/ |
| H A D | mt8186-corsola-squirtle.dts | 69 realtek,jd-mode = <2>;
|
| H A D | mt8186-corsola.dtsi | 469 realtek,jd-src = <1>;
|
| /linux/Documentation/sound/hd-audio/ |
| H A D | models.rst | 660 ref-no-jd 704 no-jd
|