/Linux-v5.4/tools/perf/util/ |
D | jitdump.c | 108 jit_close(struct jit_buf_desc *jd) in jit_close() argument 110 if (!(jd && jd->in)) in jit_close() 112 funlockfile(jd->in); in jit_close() 113 fclose(jd->in); in jit_close() 114 jd->in = NULL; in jit_close() 133 jit_open(struct jit_buf_desc *jd, const char *name) in jit_open() argument 141 jd->in = fopen(name, "r"); in jit_open() 142 if (!jd->in) in jit_open() 154 flockfile(jd->in); in jit_open() 156 ret = fread(buf, sizeof(header), 1, jd->in); in jit_open() [all …]
|
/Linux-v5.4/fs/gfs2/ |
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() 84 int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where) in gfs2_revoke_check() argument 90 list_for_each_entry(rr, &jd->jd_revoke_list, rr_list) { in gfs2_revoke_check() 100 wrap = (rr->rr_where < jd->jd_replay_tail); in gfs2_revoke_check() 101 a = (jd->jd_replay_tail < where); in gfs2_revoke_check() 108 void gfs2_revoke_clean(struct gfs2_jdesc *jd) in gfs2_revoke_clean() argument 110 struct list_head *head = &jd->jd_revoke_list; in gfs2_revoke_clean() [all …]
|
D | lops.c | 412 static bool gfs2_jhead_pg_srch(struct gfs2_jdesc *jd, in gfs2_jhead_pg_srch() argument 416 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); in gfs2_jhead_pg_srch() 455 static void gfs2_jhead_process_page(struct gfs2_jdesc *jd, unsigned long index, in gfs2_jhead_process_page() argument 461 page = find_get_page(jd->jd_inode->i_mapping, index); in gfs2_jhead_process_page() 468 *done = gfs2_jhead_pg_srch(jd, head, page); in gfs2_jhead_process_page() 484 int gfs2_find_jhead(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head, in gfs2_find_jhead() argument 487 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); in gfs2_find_jhead() 488 struct address_space *mapping = jd->jd_inode->i_mapping; in gfs2_find_jhead() 502 if (list_empty(&jd->extent_list)) in gfs2_find_jhead() 503 gfs2_map_journal_extents(sdp, jd); in gfs2_find_jhead() [all …]
|
D | recovery.h | 14 static inline void gfs2_replay_incr_blk(struct gfs2_jdesc *jd, u32 *blk) in gfs2_replay_incr_blk() argument 16 if (++*blk == jd->jd_blocks) in gfs2_replay_incr_blk() 20 extern int gfs2_replay_read_block(struct gfs2_jdesc *jd, unsigned int blk, 23 extern int gfs2_revoke_add(struct gfs2_jdesc *jd, u64 blkno, unsigned int where); 24 extern int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where); 25 extern void gfs2_revoke_clean(struct gfs2_jdesc *jd);
|
D | lops.h | 27 extern int gfs2_find_jhead(struct gfs2_jdesc *jd, 64 static inline void lops_before_scan(struct gfs2_jdesc *jd, in lops_before_scan() argument 71 gfs2_log_ops[x]->lo_before_scan(jd, head, pass); in lops_before_scan() 74 static inline int lops_scan_elements(struct gfs2_jdesc *jd, u32 start, in lops_scan_elements() argument 82 error = gfs2_log_ops[x]->lo_scan_elements(jd, start, in lops_scan_elements() 91 static inline void lops_after_scan(struct gfs2_jdesc *jd, int error, in lops_after_scan() argument 97 gfs2_log_ops[x]->lo_after_scan(jd, error, pass); in lops_after_scan()
|
D | super.c | 56 struct gfs2_jdesc *jd; in gfs2_jindex_free() local 65 jd = list_entry(list.next, struct gfs2_jdesc, jd_list); in gfs2_jindex_free() 66 gfs2_free_journal_extents(jd); in gfs2_jindex_free() 67 list_del(&jd->jd_list); in gfs2_jindex_free() 68 iput(jd->jd_inode); in gfs2_jindex_free() 69 kfree(jd); in gfs2_jindex_free() 75 struct gfs2_jdesc *jd; in jdesc_find_i() local 78 list_for_each_entry(jd, head, jd_list) { in jdesc_find_i() 79 if (jd->jd_jid == jid) { in jdesc_find_i() 86 jd = NULL; in jdesc_find_i() [all …]
|
D | ops_fstype.c | 545 struct gfs2_jdesc *jd; in gfs2_jindex_hold() local 572 jd = kzalloc(sizeof(struct gfs2_jdesc), GFP_KERNEL); in gfs2_jindex_hold() 573 if (!jd) in gfs2_jindex_hold() 576 INIT_LIST_HEAD(&jd->extent_list); in gfs2_jindex_hold() 577 INIT_LIST_HEAD(&jd->jd_revoke_list); in gfs2_jindex_hold() 579 INIT_WORK(&jd->jd_work, gfs2_recover_func); in gfs2_jindex_hold() 580 jd->jd_inode = gfs2_lookupi(sdp->sd_jindex, &name, 1); in gfs2_jindex_hold() 581 if (IS_ERR_OR_NULL(jd->jd_inode)) { in gfs2_jindex_hold() 582 if (!jd->jd_inode) in gfs2_jindex_hold() 585 error = PTR_ERR(jd->jd_inode); in gfs2_jindex_hold() [all …]
|
D | bmap.h | 61 extern int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd); 62 extern void gfs2_free_journal_extents(struct gfs2_jdesc *jd);
|
D | bmap.c | 2220 void gfs2_free_journal_extents(struct gfs2_jdesc *jd) in gfs2_free_journal_extents() argument 2224 while(!list_empty(&jd->extent_list)) { in gfs2_free_journal_extents() 2225 jext = list_entry(jd->extent_list.next, struct gfs2_journal_extent, list); in gfs2_free_journal_extents() 2241 static int gfs2_add_jextent(struct gfs2_jdesc *jd, u64 lblock, u64 dblock, u64 blocks) in gfs2_add_jextent() argument 2245 if (!list_empty(&jd->extent_list)) { in gfs2_add_jextent() 2246 jext = list_entry(jd->extent_list.prev, struct gfs2_journal_extent, list); in gfs2_add_jextent() 2259 list_add_tail(&jext->list, &jd->extent_list); in gfs2_add_jextent() 2260 jd->nr_extents++; in gfs2_add_jextent() 2284 int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd) in gfs2_map_journal_extents() argument 2288 struct gfs2_inode *ip = GFS2_I(jd->jd_inode); in gfs2_map_journal_extents() [all …]
|
D | super.h | 28 extern int gfs2_jdesc_check(struct gfs2_jdesc *jd);
|
D | log.h | 69 extern void gfs2_write_log_header(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd,
|
D | sys.c | 422 struct gfs2_jdesc *jd; in gfs2_recover_set() local 440 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { in gfs2_recover_set() 441 if (jd->jd_jid != jid && !sdp->sd_args.ar_spectator) in gfs2_recover_set() 443 rv = gfs2_recover_journal(jd, false); in gfs2_recover_set()
|
D | incore.h | 54 void (*lo_before_scan) (struct gfs2_jdesc *jd, 56 int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start, 59 void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
|
D | log.c | 679 void gfs2_write_log_header(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd, in gfs2_write_log_header() argument 709 if (!list_empty(&jd->extent_list)) in gfs2_write_log_header() 712 int ret = gfs2_lblk_to_dblk(jd->jd_inode, lblock, &dblock); in gfs2_write_log_header() 717 lh->lh_jinode = cpu_to_be64(GFS2_I(jd->jd_inode)->i_no_addr); in gfs2_write_log_header()
|
/Linux-v5.4/Documentation/devicetree/bindings/sound/ |
D | rt5645.txt | 16 a GPIO spec for the external headphone detect pin. If jd-mode = 0, 35 -- realtek,jd-mode : The JD mode of rt5645/rt5650 70 realtek,en-jd-func = "true"; 71 realtek,jd-mode = <3>;
|
D | rt5668.txt | 24 - realtek,jd-src 49 realtek,jd-src = <1>;
|
D | rt5682.txt | 24 - realtek,jd-src 49 realtek,jd-src = <1>;
|
D | rt5665.txt | 31 - realtek,jd-src
|
D | rt5659.txt | 37 - realtek,jd-src
|
/Linux-v5.4/arch/alpha/kernel/ |
D | core_apecs.c | 378 unsigned int jd; in apecs_pci_clr_err() local 380 jd = *(vuip)APECS_IOC_DCSR; in apecs_pci_clr_err() 381 if (jd & 0xffe0L) { in apecs_pci_clr_err() 383 *(vuip)APECS_IOC_DCSR = jd | 0xffe1L; in apecs_pci_clr_err()
|
D | core_cia.c | 827 int jd; in cia_pci_clr_err() local 829 jd = *(vip)CIA_IOC_CIA_ERR; in cia_pci_clr_err() 830 *(vip)CIA_IOC_CIA_ERR = jd; in cia_pci_clr_err()
|
/Linux-v5.4/Documentation/devicetree/bindings/display/ |
D | sitronix,st7735r.txt | 7 - compatible: "jianda,jd-t18003-t01", "sitronix,st7735r" 28 compatible = "jianda,jd-t18003-t01", "sitronix,st7735r";
|
/Linux-v5.4/Documentation/maintainer/ |
D | configure-git.rst | 22 email = jd@domain.org 23 signingkey = jd@domain.org
|
/Linux-v5.4/arch/powerpc/kvm/ |
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-v5.4/Documentation/devicetree/bindings/extcon/ |
D | extcon-arizona.txt | 21 - wlf,jd-invert : Invert the polarity of the jack detection switch 61 wlf,jd-invert;
|