/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() 103 nsinfo__mountns_enter(jd->nsi, &nsc); in jit_emit_elf() 112 jit_close(struct jit_buf_desc *jd) in jit_close() argument 114 if (!(jd && jd->in)) in jit_close() 116 funlockfile(jd->in); in jit_close() 117 fclose(jd->in); in jit_close() 118 jd->in = NULL; in jit_close() 137 jit_open(struct jit_buf_desc *jd, const char *name) in jit_open() argument 146 nsinfo__mountns_enter(jd->nsi, &nsc); in jit_open() [all …]
|
/linux/tools/perf/pmu-events/ |
H A D | jevents.py | 204 def __init__(self, jd: dict): 322 if 'EventCode' in jd: 323 eventcode = int(jd['EventCode'].split(',', 1)[0], 0) 324 if 'ExtSel' in jd: 325 eventcode |= int(jd['ExtSel']) << 8 326 configcode = int(jd['ConfigCode'], 0) if 'ConfigCode' in jd else None 327 eventidcode = int(jd['EventidCode'], 0) if 'EventidCode' in jd else None 328 self.name = jd['EventName'].lower() if 'EventName' in jd else None 330 self.compat = jd.get('Compat') 331 self.desc = fixdesc(jd.get('BriefDescription')) [all …]
|
/linux/Documentation/devicetree/bindings/sound/ |
H A D | realtek,rt5645.yaml | 58 A GPIO spec for the external headphone detect pin. If jd-mode = 0, we 59 will get the JD status by getting the value of hp-detect-gpios. 93 realtek,jd-mode: 94 description: The JD mode of rt5645/rt5650. 97 - 0 # rt5645/rt5650 JD function is not used 129 realtek,jd-mode = <3>;
|
H A D | rt5668.txt | 24 - realtek,jd-src 25 0: No JD is used 26 1: using JD1 as JD source 49 realtek,jd-src = <1>;
|
H A D | realtek,rt5659.yaml | 82 realtek,jd-src: 85 - 0 # No JD is used 86 - 1 # using JD3 as JD source 87 - 2 # JD source for Intel HDA header 88 description: Specify which JD source be used.
|
H A D | realtek,rt5682s.yaml | 48 realtek,jd-src: 51 - 0 # No JD is used 52 - 1 # using JD1 as JD source 54 Specify which JD source be used. 137 realtek,jd-src = <1>;
|
H A D | rt5665.txt | 31 - realtek,jd-src 32 0: No JD is used 33 1: using JD1 as JD source
|
/linux/fs/gfs2/ |
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 | ops_fstype.c | 537 struct gfs2_jdesc *jd; in gfs2_jindex_hold() local 566 jd = kzalloc(sizeof(struct gfs2_jdesc), GFP_KERNEL); in gfs2_jindex_hold() 567 if (!jd) in gfs2_jindex_hold() 570 INIT_LIST_HEAD(&jd->extent_list); in gfs2_jindex_hold() 571 INIT_LIST_HEAD(&jd->jd_revoke_list); in gfs2_jindex_hold() 573 INIT_WORK(&jd->jd_work, gfs2_recover_func); in gfs2_jindex_hold() 574 jd->jd_inode = gfs2_lookupi(sdp->sd_jindex, &name, 1); in gfs2_jindex_hold() 575 if (IS_ERR_OR_NULL(jd->jd_inode)) { in gfs2_jindex_hold() 576 if (!jd->jd_inode) in gfs2_jindex_hold() 579 error = PTR_ERR(jd->jd_inode); in gfs2_jindex_hold() [all …]
|
H A D | bmap.c | 2180 * @jd: The journal 2184 void gfs2_free_journal_extents(struct gfs2_jdesc *jd) in gfs2_free_journal_extents() argument 2188 while(!list_empty(&jd->extent_list)) { in gfs2_free_journal_extents() 2189 jext = list_first_entry(&jd->extent_list, struct gfs2_journal_extent, list); in gfs2_free_journal_extents() 2197 * @jd: The journal descriptor 2205 static int gfs2_add_jextent(struct gfs2_jdesc *jd, u64 lblock, u64 dblock, u64 blocks) in gfs2_add_jextent() argument 2209 if (!list_empty(&jd->extent_list)) { in gfs2_add_jextent() 2210 jext = list_last_entry(&jd->extent_list, struct gfs2_journal_extent, list); in gfs2_add_jextent() 2223 list_add_tail(&jext->list, &jd->extent_list); in gfs2_add_jextent() 2224 jd->nr_extents++; in gfs2_add_jextent() [all …]
|
H A D | util.c | 47 * @jd: The journal descriptor 52 int check_journal_clean(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd, in check_journal_clean() argument 60 ip = GFS2_I(jd->jd_inode); in check_journal_clean() 69 error = gfs2_jdesc_check(jd); in check_journal_clean() 76 error = gfs2_find_jhead(jd, &head); in check_journal_clean() 88 jd->jd_jid); in check_journal_clean()
|
H A D | bmap.h | 66 int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd); 67 void gfs2_free_journal_extents(struct gfs2_jdesc *jd);
|
H A D | super.h | 32 int gfs2_jdesc_check(struct gfs2_jdesc *jd);
|
/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/display/ |
H A D | sitronix,st7735r.yaml | 27 - jianda,jd-t18003-t01 62 compatible = "jianda,jd-t18003-t01", "sitronix,st7735r";
|
/linux/Documentation/maintainer/ |
H A D | configure-git.rst | 19 email = jd@domain.org 20 signingkey = jd@domain.org
|
/linux/Documentation/devicetree/bindings/extcon/ |
H A D | wlf,arizona.yaml | 32 Use the additional JD input along with JD1 for dual pin jack detection. 40 wlf,jd-invert:
|
/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/sound/soc/codecs/ |
H A D | rt5631.h | 612 /* JD trigger enable for HP */ 617 /* JD trigger enable for speaker LP/LN */ 622 /* JD trigger enable for speaker RP/RN */ 627 /* JD trigger enable for monoout */ 632 /* JD trigger enable for Lout */ 637 /* JD trigger enable for Rout */
|
/linux/drivers/media/dvb-frontends/ |
H A D | zl10039.h | 5 Copyright (C) 2007 Jan D. Louw <jd.louw@mweb.co.za>
|
H A D | zl10039.c | 5 * Copyright 2007 Jan D. Louw <jd.louw@mweb.co.za> 303 MODULE_AUTHOR("Jan D. Louw <jd.louw@mweb.co.za>");
|
/linux/drivers/gpu/drm/sitronix/ |
H A D | Kconfig | 38 * Jianda JD-T18003-T01 1.8" 128x160 TFT
|
/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>;
|
/linux/arch/arm/boot/dts/ti/omap/ |
H A D | am335x-moxa-uc-2101.dts | 7 * Fero JD Zhou (周俊達) <FeroJD.Zhou@moxa.com>
|