Home
last modified time | relevance | path

Searched refs:scm (Results 1 – 25 of 220) sorted by relevance

123456789

/linux-6.15/Documentation/devicetree/bindings/firmware/
H A Dqcom,scm.yaml24 - qcom,scm-apq8064
25 - qcom,scm-apq8084
26 - qcom,scm-ipq4019
27 - qcom,scm-ipq5018
28 - qcom,scm-ipq5332
58 - qcom,scm-sdx55
59 - qcom,scm-sdx65
60 - qcom,scm-sdx75
75 - const: qcom,scm
230 scm {
[all …]
/linux-6.15/include/net/
H A Dscm.h74 scm->creds.uid = uid; in scm_set_cred()
75 scm->creds.gid = gid; in scm_set_cred()
80 put_pid(scm->pid); in scm_destroy_cred()
81 scm->pid = NULL; in scm_destroy_cred()
86 scm_destroy_cred(scm); in scm_destroy()
87 if (scm->fp) in scm_destroy()
88 __scm_destroy(scm); in scm_destroy()
94 memset(scm, 0, sizeof(*scm)); in scm_send()
154 if (!scm->pid) in scm_pidfd_recv()
180 scm_destroy(scm); in __scm_recv_common()
[all …]
/linux-6.15/drivers/scsi/csiostor/
H A Dcsio_scsi.h202 csio_get_scsi_ioreq(struct csio_scsim *scm) in csio_get_scsi_ioreq() argument
207 req = list_first_entry(&scm->ioreq_freelist, in csio_get_scsi_ioreq()
210 CSIO_DEC_STATS(scm, n_free_ioreq); in csio_get_scsi_ioreq()
220 CSIO_INC_STATS(scm, n_free_ioreq); in csio_put_scsi_ioreq()
228 scm->stats.n_free_ioreq += n; in csio_put_scsi_ioreq_list()
232 csio_get_scsi_ddp(struct csio_scsim *scm) in csio_get_scsi_ddp() argument
236 if (likely(!list_empty(&scm->ddp_freelist))) { in csio_get_scsi_ddp()
237 ddp = list_first_entry(&scm->ddp_freelist, in csio_get_scsi_ddp()
240 CSIO_DEC_STATS(scm, n_free_ddp); in csio_get_scsi_ddp()
250 CSIO_INC_STATS(scm, n_free_ddp); in csio_put_scsi_ddp()
[all …]
H A Dcsio_scsi.c124 if (list_empty(&scm->active_q)) in csio_scsi_gather_active_ios()
1161 struct csio_hw *hw = scm->hw; in csio_scsi_cleanup_io_q()
1296 rv = csio_scsi_abort_io_q(scm, &scm->active_q, 30000); in csio_scsim_cleanup_io()
1302 csio_scsi_cleanup_io_q(scm, &scm->active_q); in csio_scsim_cleanup_io()
2348 scm->stats.n_free_ddp); in csio_scsi_alloc_ddp_bufs()
2381 scm->stats.n_free_ddp = 0; in csio_scsi_alloc_ddp_bufs()
2408 scm->stats.n_free_ddp = 0; in csio_scsi_free_ddp_bufs()
2425 scm->hw = hw; in csio_scsim_init()
2495 scm->stats.n_free_ioreq = 0; in csio_scsim_init()
2526 scm->stats.n_free_ioreq = 0; in csio_scsim_exit()
[all …]
H A Dcsio_isr.c217 struct csio_scsim *scm; in csio_scsi_isr_handler() local
221 scm = csio_hw_to_scsim(hw); in csio_scsi_isr_handler()
234 csio_put_scsi_ddp_list_lock(hw, scm, &ioreq->gen_list, in csio_scsi_isr_handler()
240 csio_put_scsi_ioreq_list_lock(hw, scm, &cbfn_q, in csio_scsi_isr_handler()
/linux-6.15/Documentation/devicetree/bindings/arm/omap/
H A Dctrl.txt16 "ti,am3-scm"
17 "ti,am4-scm"
20 "ti,omap2-scm"
21 "ti,omap3-scm"
22 "ti,omap4-scm-core"
23 "ti,omap4-scm-padconf-core"
24 "ti,omap4-scm-wkup"
25 "ti,omap4-scm-padconf-wkup"
26 "ti,omap5-scm-core"
29 "ti,dra7-scm-core"
[all …]
/linux-6.15/drivers/firmware/qcom/
H A Dqcom_scm.c2140 struct qcom_scm *scm = data; in qcom_scm_irq_handler() local
2206 struct qcom_scm *scm; in qcom_scm_probe() local
2209 scm = devm_kzalloc(&pdev->dev, sizeof(*scm), GFP_KERNEL); in qcom_scm_probe()
2210 if (!scm) in qcom_scm_probe()
2213 scm->dev = &pdev->dev; in qcom_scm_probe()
2219 mutex_init(&scm->scm_bw_lock); in qcom_scm_probe()
2222 if (IS_ERR(scm->path)) in qcom_scm_probe()
2227 if (IS_ERR(scm->core_clk)) in qcom_scm_probe()
2231 if (IS_ERR(scm->iface_clk)) in qcom_scm_probe()
2235 if (IS_ERR(scm->bus_clk)) in qcom_scm_probe()
[all …]
H A DMakefile6 obj-$(CONFIG_QCOM_SCM) += qcom-scm.o
7 qcom-scm-objs += qcom_scm.o qcom_scm-smc.o qcom_scm-legacy.o
/linux-6.15/net/core/
H A Dscm.c133 void __scm_destroy(struct scm_cookie *scm) in __scm_destroy() argument
135 struct scm_fp_list *fpl = scm->fp; in __scm_destroy()
139 scm->fp = NULL; in __scm_destroy()
330 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds() argument
335 int fdmax = min_t(int, scm_max_fds(msg), scm->fp->count); in scm_detach_fds()
344 scm_detach_fds_compat(msg, scm); in scm_detach_fds()
349 err = scm_recv_one_fd(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds()
371 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds()
378 __scm_destroy(scm); in scm_detach_fds()
/linux-6.15/net/unix/
H A Daf_unix.c1836 scm->fp = NULL; in unix_attach_fds()
1861 memset(&scm, 0, sizeof(scm)); in unix_destruct_scm()
1868 scm_destroy(&scm); in unix_destruct_scm()
2156 scm_destroy(&scm); in unix_dgram_sendmsg()
2168 scm_destroy(&scm); in unix_dgram_sendmsg()
2342 scm_destroy(&scm); in unix_stream_sendmsg()
2355 scm_destroy(&scm); in unix_stream_sendmsg()
2471 memset(&scm, 0, sizeof(scm)); in __unix_dgram_recvmsg()
2772 memset(&scm, 0, sizeof(scm)); in unix_stream_read_generic()
2905 if (scm.fp) in unix_stream_read_generic()
[all …]
/linux-6.15/Documentation/devicetree/bindings/crypto/
H A Dfsl-imx-scc.yaml26 - const: scm
53 interrupt-names = "scm", "smn";
/linux-6.15/Documentation/translations/zh_CN/process/
H A D7.AdvancedTopics.rst35 https://git-scm.com/
37 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
H A D8.Conclusion.rst51 https://www.kernel.org/pub/software/scm/git/docs/
53 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
/linux-6.15/Documentation/translations/zh_TW/process/
H A D7.AdvancedTopics.rst38 https://git-scm.com/
40 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
H A D8.Conclusion.rst54 https://www.kernel.org/pub/software/scm/git/docs/
56 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
/linux-6.15/Documentation/translations/zh_CN/mm/
H A Dvmalloced-kernel-stacks.rst75 `Kconfig <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/Kconfig>`
98 `kernel/fork.c <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/kernel/fork…
H A Dhwpoison.rst153 git://git.kernel.org/pub/scm/utils/cpu/mce/mce-test.git
156 git://git.kernel.org/pub/scm/utils/cpu/mce/mce-inject.git
/linux-6.15/tools/verification/rv/
H A DREADME.txt22 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git
27 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
/linux-6.15/tools/tracing/rtla/
H A DREADME.txt20 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git
25 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
/linux-6.15/net/
H A Dcompat.c290 void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds_compat() argument
295 int fdmax = min_t(int, scm_max_fds_compat(msg), scm->fp->count); in scm_detach_fds_compat()
300 err = scm_recv_one_fd(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds_compat()
322 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds_compat()
329 __scm_destroy(scm); in scm_detach_fds_compat()
/linux-6.15/arch/arm/boot/dts/ti/omap/
H A Domap2420.dtsi33 scm: scm@0 { label
34 compatible = "ti,omap2-scm", "simple-bus";
/linux-6.15/Documentation/bpf/
H A Dprog_lsm.rst139 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/tools/lib/bpf/bpf_tracing.h
141 …https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/tools/testing/selftests/bpf/…
143 …https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/tools/testing/selftests/bpf/…
/linux-6.15/scripts/
H A Dget_maintainer.pl55 my $scm = 0;
274 'scm!' => \$scm,
327 $scm = 0;
336 my $selections = $email + $scm + $status + $subsystem + $web + $bug;
641 my @scm = ();
656 if ($scm) {
657 @scm = uniq(@scm);
658 output(@scm);
869 @scm = ();
1400 push(@scm, $pvalue . $suffix);
/linux-6.15/Documentation/translations/zh_TW/admin-guide/
H A Dreporting-regressions.rst259 <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/staging/Kconfig>`_…
367 …https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/Documentation/translation…
/linux-6.15/Documentation/translations/zh_CN/admin-guide/
H A Dreporting-regressions.rst259 <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/staging/Kconfig>`_…
367 …https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/Documentation/translation…

123456789