Home
last modified time | relevance | path

Searched refs:mp (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/kernel/linux/linux-5.10/fs/xfs/
Dxfs_mount.c56 struct xfs_mount *mp) in xfs_uuid_mount() argument
58 uuid_t *uuid = &mp->m_sb.sb_uuid; in xfs_uuid_mount()
62 uuid_copy(&mp->m_super->s_uuid, uuid); in xfs_uuid_mount()
64 if (mp->m_flags & XFS_MOUNT_NOUUID) in xfs_uuid_mount()
68 xfs_warn(mp, "Filesystem has null UUID - can't mount"); in xfs_uuid_mount()
95 xfs_warn(mp, "Filesystem has duplicate UUID %pU - can't mount", uuid); in xfs_uuid_mount()
101 struct xfs_mount *mp) in xfs_uuid_unmount() argument
103 uuid_t *uuid = &mp->m_sb.sb_uuid; in xfs_uuid_unmount()
106 if (mp->m_flags & XFS_MOUNT_NOUUID) in xfs_uuid_unmount()
138 xfs_mount_t *mp) in xfs_free_perag() argument
[all …]
Dxfs_super.c58 struct xfs_mount *mp, in xfs_mount_set_dax_mode() argument
63 mp->m_flags &= ~(XFS_MOUNT_DAX_ALWAYS | XFS_MOUNT_DAX_NEVER); in xfs_mount_set_dax_mode()
66 mp->m_flags |= XFS_MOUNT_DAX_ALWAYS; in xfs_mount_set_dax_mode()
67 mp->m_flags &= ~XFS_MOUNT_DAX_NEVER; in xfs_mount_set_dax_mode()
70 mp->m_flags |= XFS_MOUNT_DAX_NEVER; in xfs_mount_set_dax_mode()
71 mp->m_flags &= ~XFS_MOUNT_DAX_ALWAYS; in xfs_mount_set_dax_mode()
170 struct xfs_mount *mp = XFS_M(root->d_sb); in xfs_fs_show_options() local
174 if (mp->m_flags & xfs_infop->flag) in xfs_fs_show_options()
179 (mp->m_flags & XFS_MOUNT_SMALL_INUMS) ? 32 : 64); in xfs_fs_show_options()
181 if (mp->m_flags & XFS_MOUNT_ALLOCSIZE) in xfs_fs_show_options()
[all …]
Dxfs_fsops.c28 xfs_mount_t *mp, /* mount point for filesystem */ in xfs_growfs_data_private() argument
42 if (nb < mp->m_sb.sb_dblocks) in xfs_growfs_data_private()
44 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb))) in xfs_growfs_data_private()
46 error = xfs_buf_read_uncached(mp->m_ddev_targp, in xfs_growfs_data_private()
47 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1), in xfs_growfs_data_private()
48 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL); in xfs_growfs_data_private()
54 nb_mod = do_div(new, mp->m_sb.sb_agblocks); in xfs_growfs_data_private()
58 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks; in xfs_growfs_data_private()
59 if (nb < mp->m_sb.sb_dblocks) in xfs_growfs_data_private()
62 new = nb - mp->m_sb.sb_dblocks; in xfs_growfs_data_private()
[all …]
Dxfs_rtalloc.c31 xfs_mount_t *mp, /* file system mount structure */ in xfs_rtget_summary() argument
39 return xfs_rtmodify_summary_int(mp, tp, log, bbno, 0, rbpp, rsb, sum); in xfs_rtget_summary()
48 xfs_mount_t *mp, /* file system mount structure */ in xfs_rtany_summary() argument
62 if (mp->m_rsum_cache && low < mp->m_rsum_cache[bbno]) in xfs_rtany_summary()
63 low = mp->m_rsum_cache[bbno]; in xfs_rtany_summary()
72 error = xfs_rtget_summary(mp, tp, log, bbno, rbpp, rsb, &sum); in xfs_rtany_summary()
90 if (mp->m_rsum_cache && log > mp->m_rsum_cache[bbno]) in xfs_rtany_summary()
91 mp->m_rsum_cache[bbno] = log; in xfs_rtany_summary()
143 xfs_mount_t *mp, /* file system mount point */ in xfs_rtallocate_range() argument
161 error = xfs_rtfind_back(mp, tp, start, 0, &preblock); in xfs_rtallocate_range()
[all …]
Dxfs_qm.c33 STATIC int xfs_qm_init_quotainos(struct xfs_mount *mp);
34 STATIC int xfs_qm_init_quotainfo(struct xfs_mount *mp);
49 struct xfs_mount *mp, in xfs_qm_dquot_walk() argument
54 struct xfs_quotainfo *qi = mp->m_quotainfo; in xfs_qm_dquot_walk()
122 struct xfs_mount *mp = dqp->q_mount; in xfs_qm_dqpurge() local
123 struct xfs_quotainfo *qi = mp->m_quotainfo; in xfs_qm_dqpurge()
158 ASSERT(XFS_FORCED_SHUTDOWN(mp) || in xfs_qm_dqpurge()
173 XFS_STATS_DEC(mp, xs_qm_dquot_unused); in xfs_qm_dqpurge()
188 struct xfs_mount *mp, in xfs_qm_dqpurge_all() argument
192 xfs_qm_dquot_walk(mp, XFS_DQTYPE_USER, xfs_qm_dqpurge, NULL); in xfs_qm_dqpurge_all()
[all …]
Dxfs_qm_syscalls.c24 struct xfs_mount *mp, in xfs_qm_log_quotaoff() argument
32 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_qm_quotaoff, 0, 0, 0, &tp); in xfs_qm_log_quotaoff()
39 spin_lock(&mp->m_sb_lock); in xfs_qm_log_quotaoff()
40 mp->m_sb.sb_qflags = (mp->m_qflags & ~(flags)) & XFS_MOUNT_QUOTA_ALL; in xfs_qm_log_quotaoff()
41 spin_unlock(&mp->m_sb_lock); in xfs_qm_log_quotaoff()
62 struct xfs_mount *mp, in xfs_qm_log_quotaoff_end() argument
70 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_qm_equotaoff, 0, 0, 0, &tp); in xfs_qm_log_quotaoff_end()
98 xfs_mount_t *mp, in xfs_qm_scall_quotaoff() argument
101 struct xfs_quotainfo *q = mp->m_quotainfo; in xfs_qm_scall_quotaoff()
112 if ((mp->m_qflags & flags) == 0) in xfs_qm_scall_quotaoff()
[all …]
Dxfs_health.c25 struct xfs_mount *mp) in xfs_health_unmount() argument
33 if (XFS_FORCED_SHUTDOWN(mp)) in xfs_health_unmount()
37 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) { in xfs_health_unmount()
38 pag = xfs_perag_get(mp, agno); in xfs_health_unmount()
41 trace_xfs_ag_unfixed_corruption(mp, agno, sick); in xfs_health_unmount()
48 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
50 trace_xfs_rt_unfixed_corruption(mp, sick); in xfs_health_unmount()
58 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
60 trace_xfs_fs_unfixed_corruption(mp, sick); in xfs_health_unmount()
65 xfs_warn(mp, in xfs_health_unmount()
[all …]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_trans_space.h14 #define XFS_MAX_CONTIG_RMAPS_PER_BLOCK(mp) \ argument
15 (((mp)->m_rmap_mxr[0]) - ((mp)->m_rmap_mnr[0]))
18 #define XFS_RMAPADD_SPACE_RES(mp) ((mp)->m_rmap_maxlevels) argument
21 #define XFS_NRMAPADD_SPACE_RES(mp, b)\ argument
22 (((b + XFS_MAX_CONTIG_RMAPS_PER_BLOCK(mp) - 1) / \
23 XFS_MAX_CONTIG_RMAPS_PER_BLOCK(mp)) * \
24 XFS_RMAPADD_SPACE_RES(mp))
26 #define XFS_MAX_CONTIG_EXTENTS_PER_BLOCK(mp) \ argument
27 (((mp)->m_alloc_mxr[0]) - ((mp)->m_alloc_mnr[0]))
28 #define XFS_EXTENTADD_SPACE_RES(mp,w) (XFS_BM_MAXLEVELS(mp,w) - 1) argument
[all …]
Dxfs_trans_resv.c68 struct xfs_mount *mp, in xfs_allocfree_log_count() argument
73 blocks = num_ops * 2 * (2 * mp->m_ag_maxlevels - 1); in xfs_allocfree_log_count()
74 if (xfs_sb_version_hasrmapbt(&mp->m_sb)) in xfs_allocfree_log_count()
75 blocks += num_ops * (2 * mp->m_rmap_maxlevels - 1); in xfs_allocfree_log_count()
76 if (xfs_sb_version_hasreflink(&mp->m_sb)) in xfs_allocfree_log_count()
77 blocks += num_ops * (2 * mp->m_refc_maxlevels - 1); in xfs_allocfree_log_count()
113 struct xfs_mount *mp, in xfs_calc_inode_res() argument
119 mp->m_sb.sb_inodesize + in xfs_calc_inode_res()
120 2 * XFS_BMBT_BLOCK_LEN(mp)); in xfs_calc_inode_res()
135 struct xfs_mount *mp) in xfs_calc_inobt_res() argument
[all …]
Dxfs_types.c18 struct xfs_mount *mp, in xfs_ag_block_count() argument
21 ASSERT(agno < mp->m_sb.sb_agcount); in xfs_ag_block_count()
23 if (agno < mp->m_sb.sb_agcount - 1) in xfs_ag_block_count()
24 return mp->m_sb.sb_agblocks; in xfs_ag_block_count()
25 return mp->m_sb.sb_dblocks - (agno * mp->m_sb.sb_agblocks); in xfs_ag_block_count()
34 struct xfs_mount *mp, in xfs_verify_agbno() argument
40 eoag = xfs_ag_block_count(mp, agno); in xfs_verify_agbno()
43 if (agbno <= XFS_AGFL_BLOCK(mp)) in xfs_verify_agbno()
54 struct xfs_mount *mp, in xfs_verify_fsbno() argument
57 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, fsbno); in xfs_verify_fsbno()
[all …]
Dxfs_ag.c28 struct xfs_mount *mp, in xfs_get_aghdr_buf() argument
37 error = xfs_buf_get_uncached(mp->m_ddev_targp, numblks, 0, &bp); in xfs_get_aghdr_buf()
50 static inline bool is_log_ag(struct xfs_mount *mp, struct aghdr_init_data *id) in is_log_ag() argument
52 return mp->m_sb.sb_logstart > 0 && in is_log_ag()
53 id->agno == XFS_FSB_TO_AGNO(mp, mp->m_sb.sb_logstart); in is_log_ag()
61 struct xfs_mount *mp, in xfs_btroot_init() argument
65 xfs_btree_init_block(mp, bp, id->type, 0, 0, id->agno); in xfs_btroot_init()
71 struct xfs_mount *mp, in xfs_freesp_init_recs() argument
78 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1); in xfs_freesp_init_recs()
79 arec->ar_startblock = cpu_to_be32(mp->m_ag_prealloc_blocks); in xfs_freesp_init_recs()
[all …]
Dxfs_quota_defs.h60 #define XFS_DQUOT_LOGRES(mp) \ argument
63 #define XFS_IS_QUOTA_RUNNING(mp) ((mp)->m_qflags & XFS_ALL_QUOTA_ACCT) argument
64 #define XFS_IS_UQUOTA_RUNNING(mp) ((mp)->m_qflags & XFS_UQUOTA_ACCT) argument
65 #define XFS_IS_PQUOTA_RUNNING(mp) ((mp)->m_qflags & XFS_PQUOTA_ACCT) argument
66 #define XFS_IS_GQUOTA_RUNNING(mp) ((mp)->m_qflags & XFS_GQUOTA_ACCT) argument
67 #define XFS_IS_UQUOTA_ENFORCED(mp) ((mp)->m_qflags & XFS_UQUOTA_ENFD) argument
68 #define XFS_IS_GQUOTA_ENFORCED(mp) ((mp)->m_qflags & XFS_GQUOTA_ENFD) argument
69 #define XFS_IS_PQUOTA_ENFORCED(mp) ((mp)->m_qflags & XFS_PQUOTA_ENFD) argument
86 #define XFS_IS_QUOTA_ON(mp) ((mp)->m_qflags & (XFS_UQUOTA_ACTIVE | \ argument
89 #define XFS_IS_UQUOTA_ON(mp) ((mp)->m_qflags & XFS_UQUOTA_ACTIVE) argument
[all …]
Dxfs_sb.c40 struct xfs_mount *mp, in xfs_perag_get() argument
47 pag = radix_tree_lookup(&mp->m_perag_tree, agno); in xfs_perag_get()
53 trace_xfs_perag_get(mp, agno, ref, _RET_IP_); in xfs_perag_get()
62 struct xfs_mount *mp, in xfs_perag_get_tag() argument
71 found = radix_tree_gang_lookup_tag(&mp->m_perag_tree, in xfs_perag_get_tag()
79 trace_xfs_perag_get_tag(mp, pag->pag_agno, ref, _RET_IP_); in xfs_perag_get_tag()
97 struct xfs_mount *mp, in xfs_validate_sb_read() argument
108 xfs_warn(mp, in xfs_validate_sb_read()
111 xfs_warn(mp, in xfs_validate_sb_read()
116 xfs_alert(mp, in xfs_validate_sb_read()
[all …]
/kernel/linux/linux-5.10/drivers/media/usb/pvrusb2/
Dpvrusb2-context.c30 static void pvr2_context_set_notify(struct pvr2_context *mp, int fl) in pvr2_context_set_notify() argument
35 if (!mp->notify_flag) { in pvr2_context_set_notify()
37 mp->notify_prev = pvr2_context_notify_last; in pvr2_context_set_notify()
38 mp->notify_next = NULL; in pvr2_context_set_notify()
39 pvr2_context_notify_last = mp; in pvr2_context_set_notify()
40 if (mp->notify_prev) { in pvr2_context_set_notify()
41 mp->notify_prev->notify_next = mp; in pvr2_context_set_notify()
43 pvr2_context_notify_first = mp; in pvr2_context_set_notify()
45 mp->notify_flag = !0; in pvr2_context_set_notify()
48 if (mp->notify_flag) { in pvr2_context_set_notify()
[all …]
/kernel/uniproton/src/fs/vfs/
Dvfs_mount.c28 static void OsMpDeleteFromList(struct TagMountPoint *mp) in OsMpDeleteFromList() argument
32 if (g_mountPoints == mp) { in OsMpDeleteFromList()
33 g_mountPoints = mp->mNext; in OsMpDeleteFromList()
38 if (prev->mNext != mp) { in OsMpDeleteFromList()
42 prev->mNext = mp->mNext; in OsMpDeleteFromList()
84 struct TagMountPoint *mp = g_mountPoints; in OsVfsFindMp() local
98 while ((mp != NULL) && (mp->mPath != NULL)) { in OsVfsFindMp()
99 matches = OsVfsFindMpByPath(mp->mPath, path); in OsVfsFindMp()
102 bestMp = mp; in OsVfsFindMp()
113 mp = mp->mNext; in OsVfsFindMp()
[all …]
/kernel/linux/linux-5.10/fs/jfs/
Djfs_metapage.c31 #define metapage_locked(mp) test_bit(META_locked, &(mp)->flag) argument
32 #define trylock_metapage(mp) test_and_set_bit_lock(META_locked, &(mp)->flag) argument
34 static inline void unlock_metapage(struct metapage *mp) in unlock_metapage() argument
36 clear_bit_unlock(META_locked, &mp->flag); in unlock_metapage()
37 wake_up(&mp->wait); in unlock_metapage()
40 static inline void __lock_metapage(struct metapage *mp) in __lock_metapage() argument
44 add_wait_queue_exclusive(&mp->wait, &wait); in __lock_metapage()
47 if (metapage_locked(mp)) { in __lock_metapage()
48 unlock_page(mp->page); in __lock_metapage()
50 lock_page(mp->page); in __lock_metapage()
[all …]
Djfs_metapage.h45 #define mark_metapage_dirty(mp) set_bit(META_dirty, &(mp)->flag) argument
72 static inline void write_metapage(struct metapage *mp) in write_metapage() argument
74 set_bit(META_dirty, &mp->flag); in write_metapage()
75 release_metapage(mp); in write_metapage()
78 static inline void flush_metapage(struct metapage *mp) in flush_metapage() argument
80 set_bit(META_sync, &mp->flag); in flush_metapage()
81 write_metapage(mp); in flush_metapage()
84 static inline void discard_metapage(struct metapage *mp) in discard_metapage() argument
86 clear_bit(META_dirty, &mp->flag); in discard_metapage()
87 set_bit(META_discard, &mp->flag); in discard_metapage()
[all …]
/kernel/liteos_m/components/fs/vfs/
Dvfs_mount.c47 static void MpDeleteFromList(struct MountPoint *mp) in MpDeleteFromList() argument
52 if (g_mountPoints == mp) { in MpDeleteFromList()
53 g_mountPoints = mp->mNext; in MpDeleteFromList()
56 if (prev->mNext != mp) { in MpDeleteFromList()
60 prev->mNext = mp->mNext; in MpDeleteFromList()
69 struct MountPoint *mp = g_mountPoints; in VfsMpFind() local
76 while ((mp != NULL) && (mp->mPath != NULL)) { in VfsMpFind()
77 const char *mPath = mp->mPath; in VfsMpFind()
111 bestMp = mp; in VfsMpFind()
122 mp = mp->mNext; in VfsMpFind()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/apple/
Dmace.c92 static inline void mace_clean_rings(struct mace_data *mp);
113 struct mace_data *mp; in mace_probe() local
155 mp = netdev_priv(dev); in mace_probe()
156 mp->mdev = mdev; in mace_probe()
160 mp->mace = ioremap(dev->base_addr, 0x1000); in mace_probe()
161 if (mp->mace == NULL) { in mace_probe()
172 mp->chipid = (in_8(&mp->mace->chipid_hi) << 8) | in mace_probe()
173 in_8(&mp->mace->chipid_lo); in mace_probe()
176 mp = netdev_priv(dev); in mace_probe()
177 mp->maccc = ENXMT | ENRCV; in mace_probe()
[all …]
Dmacmace.c103 struct mace_data *mp = netdev_priv(dev); in mace_load_rxdma_base() local
106 psc_write_long(PSC_ENETRD_ADDR + set, (u32) mp->rx_ring_phys); in mace_load_rxdma_base()
109 mp->rx_tail = 0; in mace_load_rxdma_base()
118 struct mace_data *mp = netdev_priv(dev); in mace_rxdma_reset() local
119 volatile struct mace *mace = mp->mace; in mace_rxdma_reset()
133 mp->rx_slot = 0; in mace_rxdma_reset()
145 struct mace_data *mp = netdev_priv(dev); in mace_txdma_reset() local
146 volatile struct mace *mace = mp->mace; in mace_txdma_reset()
154 mp->tx_slot = mp->tx_sloti = 0; in mace_txdma_reset()
155 mp->tx_count = N_TX_RING; in mace_txdma_reset()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/marvell/
Dmv643xx_eth.c418 static inline u32 rdl(struct mv643xx_eth_private *mp, int offset) in rdl() argument
420 return readl(mp->shared->base + offset); in rdl()
423 static inline u32 rdlp(struct mv643xx_eth_private *mp, int offset) in rdlp() argument
425 return readl(mp->base + offset); in rdlp()
428 static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data) in wrl() argument
430 writel(data, mp->shared->base + offset); in wrl()
433 static inline void wrlp(struct mv643xx_eth_private *mp, int offset, u32 data) in wrlp() argument
435 writel(data, mp->base + offset); in wrlp()
452 struct mv643xx_eth_private *mp = rxq_to_mp(rxq); in rxq_enable() local
453 wrlp(mp, RXQ_COMMAND, 1 << rxq->index); in rxq_enable()
[all …]
/kernel/linux/linux-5.10/drivers/scsi/sym53c8xx_2/
Dsym_malloc.c47 static void *___sym_malloc(m_pool_p mp, int size) in ___sym_malloc() argument
53 m_link_p h = mp->h; in ___sym_malloc()
93 static void ___sym_mfree(m_pool_p mp, void *ptr, int size) in ___sym_mfree() argument
99 m_link_p h = mp->h; in ___sym_mfree()
145 static void *__sym_calloc2(m_pool_p mp, int size, char *name, int uflags) in __sym_calloc2() argument
149 p = ___sym_malloc(mp, size); in __sym_calloc2()
161 #define __sym_calloc(mp, s, n) __sym_calloc2(mp, s, n, SYM_MEM_WARN) argument
166 static void __sym_mfree(m_pool_p mp, void *ptr, int size, char *name) in __sym_mfree() argument
171 ___sym_mfree(mp, ptr, size); in __sym_mfree()
180 static void *___mp0_get_mem_cluster(m_pool_p mp) in ___mp0_get_mem_cluster() argument
[all …]
/kernel/linux/linux-5.10/drivers/pci/controller/dwc/
Dpci-meson.c76 static struct reset_control *meson_pcie_get_reset(struct meson_pcie *mp, in meson_pcie_get_reset() argument
80 struct device *dev = mp->pci.dev; in meson_pcie_get_reset()
91 static int meson_pcie_get_resets(struct meson_pcie *mp) in meson_pcie_get_resets() argument
93 struct meson_pcie_rc_reset *mrst = &mp->mrst; in meson_pcie_get_resets()
95 mrst->port = meson_pcie_get_reset(mp, "port", PCIE_NORMAL_RESET); in meson_pcie_get_resets()
100 mrst->apb = meson_pcie_get_reset(mp, "apb", PCIE_SHARED_RESET); in meson_pcie_get_resets()
109 struct meson_pcie *mp) in meson_pcie_get_mems() argument
111 struct dw_pcie *pci = &mp->pci; in meson_pcie_get_mems()
117 mp->cfg_base = devm_platform_ioremap_resource_byname(pdev, "cfg"); in meson_pcie_get_mems()
118 if (IS_ERR(mp->cfg_base)) in meson_pcie_get_mems()
[all …]
/kernel/linux/linux-5.10/drivers/isdn/capi/
Dcapi.c144 static int capiminor_add_ack(struct capiminor *mp, u16 datahandle) in capiminor_add_ack() argument
155 spin_lock_bh(&mp->ackqlock); in capiminor_add_ack()
156 list_add_tail(&n->list, &mp->ackqueue); in capiminor_add_ack()
157 mp->nack++; in capiminor_add_ack()
158 spin_unlock_bh(&mp->ackqlock); in capiminor_add_ack()
162 static int capiminor_del_ack(struct capiminor *mp, u16 datahandle) in capiminor_del_ack() argument
166 spin_lock_bh(&mp->ackqlock); in capiminor_del_ack()
167 list_for_each_entry_safe(p, tmp, &mp->ackqueue, list) { in capiminor_del_ack()
170 mp->nack--; in capiminor_del_ack()
171 spin_unlock_bh(&mp->ackqlock); in capiminor_del_ack()
[all …]
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/
Dapply.c131 struct mgr_priv_data *mp; in apply_init_priv() local
171 mp = &dss_data.mgr_priv_data_array[OMAP_DSS_CHANNEL_DIGIT]; in apply_init_priv()
173 mp->lcd_config.video_port_width = 24; in apply_init_priv()
174 mp->lcd_config.clock_info.lck_div = 1; in apply_init_priv()
175 mp->lcd_config.clock_info.pck_div = 1; in apply_init_priv()
185 struct mgr_priv_data *mp = get_mgr_priv(ovl->manager); in ovl_manual_update() local
187 return mp->lcd_config.stallmode; in ovl_manual_update()
192 struct mgr_priv_data *mp = get_mgr_priv(mgr); in mgr_manual_update() local
194 return mp->lcd_config.stallmode; in mgr_manual_update()
205 struct mgr_priv_data *mp; in dss_check_settings_low() local
[all …]

12345678910>>...15