Home
last modified time | relevance | path

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

12345678

/linux-6.12.1/include/net/
Dscm.h53 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm);
54 void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm);
55 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm);
56 void __scm_destroy(struct scm_cookie *scm);
60 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
62 security_socket_getpeersec_dgram(sock, NULL, &scm->secid); in unix_get_peersec_dgram()
65 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
69 static __inline__ void scm_set_cred(struct scm_cookie *scm, in scm_set_cred() argument
72 scm->pid = get_pid(pid); in scm_set_cred()
73 scm->creds.pid = pid_vnr(pid); in scm_set_cred()
[all …]
/linux-6.12.1/drivers/scsi/csiostor/
Dcsio_scsi.h202 csio_get_scsi_ioreq(struct csio_scsim *scm) in csio_get_scsi_ioreq() argument
206 if (likely(!list_empty(&scm->ioreq_freelist))) { in csio_get_scsi_ioreq()
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()
217 csio_put_scsi_ioreq(struct csio_scsim *scm, struct csio_ioreq *ioreq) in csio_put_scsi_ioreq() argument
219 list_add_tail(&ioreq->sm.sm_list, &scm->ioreq_freelist); in csio_put_scsi_ioreq()
220 CSIO_INC_STATS(scm, n_free_ioreq); in csio_put_scsi_ioreq()
224 csio_put_scsi_ioreq_list(struct csio_scsim *scm, struct list_head *reqlist, in csio_put_scsi_ioreq_list() argument
227 list_splice_init(reqlist, &scm->ioreq_freelist); in csio_put_scsi_ioreq_list()
228 scm->stats.n_free_ioreq += n; in csio_put_scsi_ioreq_list()
[all …]
Dcsio_scsi.c118 csio_scsi_gather_active_ios(struct csio_scsim *scm, in csio_scsi_gather_active_ios() argument
124 if (list_empty(&scm->active_q)) in csio_scsi_gather_active_ios()
129 list_splice_tail_init(&scm->active_q, dest); in csio_scsi_gather_active_ios()
133 list_for_each_safe(tmp, next, &scm->active_q) { in csio_scsi_gather_active_ios()
776 struct csio_scsim *scm = csio_hw_to_scsim(hw); in csio_scsis_io_active() local
781 CSIO_DEC_STATS(scm, n_active); in csio_scsis_io_active()
834 CSIO_DEC_STATS(scm, n_active); in csio_scsis_io_active()
848 struct csio_scsim *scm = csio_hw_to_scsim(hw); in csio_scsis_tm_active() local
852 CSIO_DEC_STATS(scm, n_tm_active); in csio_scsis_tm_active()
877 CSIO_DEC_STATS(scm, n_tm_active); in csio_scsis_tm_active()
[all …]
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.12.1/Documentation/devicetree/bindings/arm/omap/
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"
27 "ti,omap5-scm-padconf-core"
[all …]
/linux-6.12.1/drivers/firmware/qcom/
Dqcom_scm.c1779 static int qcom_scm_qseecom_init(struct qcom_scm *scm) in qcom_scm_qseecom_init() argument
1800 dev_info(scm->dev, "qseecom: found qseecom with version 0x%x\n", version); in qcom_scm_qseecom_init()
1803 dev_info(scm->dev, "qseecom: untested machine, skipping\n"); in qcom_scm_qseecom_init()
1815 qseecom_dev->dev.parent = scm->dev; in qcom_scm_qseecom_init()
1823 return devm_add_action_or_reset(scm->dev, qcom_scm_qseecom_free, qseecom_dev); in qcom_scm_qseecom_init()
1828 static int qcom_scm_qseecom_init(struct qcom_scm *scm) in qcom_scm_qseecom_init() argument
1887 struct qcom_scm *scm = data; in qcom_scm_irq_handler() local
1893 dev_err(scm->dev, "GET_WQ_CTX SMC call failed: %d\n", ret); in qcom_scm_irq_handler()
1898 dev_err(scm->dev, "Invalid flags received for wq_ctx: %u\n", flags); in qcom_scm_irq_handler()
1953 struct qcom_scm *scm; in qcom_scm_probe() local
[all …]
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.12.1/net/core/
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()
320 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds() argument
325 int fdmax = min_t(int, scm_max_fds(msg), scm->fp->count); in scm_detach_fds()
334 scm_detach_fds_compat(msg, scm); in scm_detach_fds()
339 err = scm_recv_one_fd(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds()
361 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds()
368 __scm_destroy(scm); in scm_detach_fds()
/linux-6.12.1/net/unix/
Daf_unix.c262 static void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
264 UNIXCB(skb).secid = scm->secid; in unix_get_secdata()
267 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
269 scm->secid = UNIXCB(skb).secid; in unix_set_secdata()
272 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) in unix_secdata_eq() argument
274 return (scm->secid == UNIXCB(skb).secid); in unix_secdata_eq()
277 static inline void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
280 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
283 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) in unix_secdata_eq() argument
1845 static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_attach_fds() argument
[all …]
/linux-6.12.1/Documentation/translations/zh_CN/process/
D7.AdvancedTopics.rst35 https://git-scm.com/
37 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
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.12.1/Documentation/translations/zh_TW/process/
D7.AdvancedTopics.rst38 https://git-scm.com/
40 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
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.12.1/tools/tracing/rtla/
DREADME.txt19 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git
24 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
/linux-6.12.1/Documentation/translations/zh_CN/mm/
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…
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.12.1/tools/verification/rv/
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.12.1/net/
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.12.1/arch/arm/boot/dts/ti/omap/
Domap2420.dtsi33 scm: scm@0 { label
34 compatible = "ti,omap2-scm", "simple-bus";
/linux-6.12.1/Documentation/bpf/
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/…
Dmap_sockmap.rst491 .. _`tools/testing/selftests/bpf/progs/test_sockmap_kern.h`: https://git.kernel.org/pub/scm/linux/k…
492 .. _`tools/testing/selftests/bpf/progs/sockmap_parse_prog.c`: https://git.kernel.org/pub/scm/linux/…
493 .. _`tools/testing/selftests/bpf/progs/sockmap_verdict_prog.c`: https://git.kernel.org/pub/scm/linu…
494 .. _`tools/testing/selftests/bpf/prog_tests/sockmap_basic.c`: https://git.kernel.org/pub/scm/linux/…
495 .. _`tools/testing/selftests/bpf/test_sockmap.c`: https://git.kernel.org/pub/scm/linux/kernel/git/t…
496 .. _`tools/testing/selftests/bpf/test_maps.c`: https://git.kernel.org/pub/scm/linux/kernel/git/torv…
497 .. _`tools/testing/selftests/bpf/progs/test_sockmap_listen.c`: https://git.kernel.org/pub/scm/linux…
498 .. _`tools/testing/selftests/bpf/progs/test_sockmap_update.c`: https://git.kernel.org/pub/scm/linux…
/linux-6.12.1/scripts/
Dget_maintainer.pl54 my $scm = 0;
272 'scm!' => \$scm,
321 $scm = 0;
330 my $selections = $email + $scm + $status + $subsystem + $web + $bug;
635 my @scm = ();
649 if ($scm) {
650 @scm = uniq(@scm);
651 output(@scm);
857 @scm = ();
1393 push(@scm, $pvalue . $suffix);
/linux-6.12.1/Documentation/translations/zh_TW/admin-guide/
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.12.1/Documentation/translations/zh_CN/admin-guide/
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.12.1/
DMAINTAINERS117 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
318 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
1084 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git
1233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
[all …]

12345678