Home
last modified time | relevance | path

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

12345678910>>...15

/OK3568_Linux_fs/kernel/include/net/
H A Dscm.h40 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm);
41 void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm);
42 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm);
43 void __scm_destroy(struct scm_cookie *scm);
47 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
49 security_socket_getpeersec_dgram(sock, NULL, &scm->secid); in unix_get_peersec_dgram()
52 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
56 static __inline__ void scm_set_cred(struct scm_cookie *scm, in scm_set_cred() argument
59 scm->pid = get_pid(pid); in scm_set_cred()
60 scm->creds.pid = pid_vnr(pid); in scm_set_cred()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/firmware/
H A Dqcom,scm.txt10 * "qcom,scm-apq8064"
11 * "qcom,scm-apq8084"
12 * "qcom,scm-ipq4019"
13 * "qcom,scm-ipq806x"
14 * "qcom,scm-ipq8074"
15 * "qcom,scm-msm8660"
16 * "qcom,scm-msm8916"
17 * "qcom,scm-msm8960"
18 * "qcom,scm-msm8974"
19 * "qcom,scm-msm8994"
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/csiostor/
H A Dcsio_scsi.h192 csio_get_scsi_ioreq(struct csio_scsim *scm) in csio_get_scsi_ioreq() argument
196 if (likely(!list_empty(&scm->ioreq_freelist))) { in csio_get_scsi_ioreq()
197 req = list_first_entry(&scm->ioreq_freelist, in csio_get_scsi_ioreq()
200 CSIO_DEC_STATS(scm, n_free_ioreq); in csio_get_scsi_ioreq()
207 csio_put_scsi_ioreq(struct csio_scsim *scm, struct csio_ioreq *ioreq) in csio_put_scsi_ioreq() argument
209 list_add_tail(&ioreq->sm.sm_list, &scm->ioreq_freelist); in csio_put_scsi_ioreq()
210 CSIO_INC_STATS(scm, n_free_ioreq); in csio_put_scsi_ioreq()
214 csio_put_scsi_ioreq_list(struct csio_scsim *scm, struct list_head *reqlist, in csio_put_scsi_ioreq_list() argument
217 list_splice_init(reqlist, &scm->ioreq_freelist); in csio_put_scsi_ioreq_list()
218 scm->stats.n_free_ioreq += n; in csio_put_scsi_ioreq_list()
[all …]
H A 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 …]
/OK3568_Linux_fs/kernel/net/unix/
H A Dscm.c106 int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_attach_fds() argument
118 UNIXCB(skb).fp = scm_fp_dup(scm->fp); in unix_attach_fds()
122 for (i = scm->fp->count - 1; i >= 0; i--) in unix_attach_fds()
123 unix_inflight(scm->fp->user, scm->fp->fp[i]); in unix_attach_fds()
128 void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_detach_fds() argument
132 scm->fp = UNIXCB(skb).fp; in unix_detach_fds()
135 for (i = scm->fp->count-1; i >= 0; i--) in unix_detach_fds()
136 unix_notinflight(scm->fp->user, scm->fp->fp[i]); in unix_detach_fds()
142 struct scm_cookie scm; in unix_destruct_scm() local
144 memset(&scm, 0, sizeof(scm)); in unix_destruct_scm()
[all …]
H A Daf_unix.c139 static void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
141 UNIXCB(skb).secid = scm->secid; in unix_get_secdata()
144 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
146 scm->secid = UNIXCB(skb).secid; in unix_set_secdata()
149 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) in unix_secdata_eq() argument
151 return (scm->secid == UNIXCB(skb).secid); in unix_secdata_eq()
154 static inline void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
157 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
160 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) in unix_secdata_eq() argument
1546 static void unix_peek_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_peek_fds() argument
[all …]
H A Dscm.h7 int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb);
8 void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb);
/OK3568_Linux_fs/kernel/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"
27 "ti,omap5-scm-padconf-core"
[all …]
/OK3568_Linux_fs/buildroot/package/guile/
H A D0004-module-system-base-target.scm-support-riscv32.patch4 Subject: [PATCH] module/system/base/target.scm: support riscv32
8 system/base/target.scm:132:16: In procedure triplet-pointer-size:
16 module/system/base/target.scm | 1 +
19 diff --git a/module/system/base/target.scm b/module/system/base/target.scm
21 --- a/module/system/base/target.scm
22 +++ b/module/system/base/target.scm
H A D0001-fix_arm_endianness.patch6 diff -Nau guile-2.0.11.orig/module/system/base/target.scm guile-2.0.11/module/system/base/target.scm
7 --- guile-2.0.11.orig/module/system/base/target.scm 2013-02-28 09:42:45.000000000 +0100
8 +++ guile-2.0.11/module/system/base/target.scm 2014-11-03 23:05:01.789338997 +0100
/OK3568_Linux_fs/kernel/drivers/firmware/
H A Dqcom_scm.c1181 struct qcom_scm *scm; in qcom_scm_probe() local
1185 scm = devm_kzalloc(&pdev->dev, sizeof(*scm), GFP_KERNEL); in qcom_scm_probe()
1186 if (!scm) in qcom_scm_probe()
1189 ret = qcom_scm_find_dload_address(&pdev->dev, &scm->dload_mode_addr); in qcom_scm_probe()
1195 scm->core_clk = devm_clk_get(&pdev->dev, "core"); in qcom_scm_probe()
1196 if (IS_ERR(scm->core_clk)) { in qcom_scm_probe()
1197 if (PTR_ERR(scm->core_clk) == -EPROBE_DEFER) in qcom_scm_probe()
1198 return PTR_ERR(scm->core_clk); in qcom_scm_probe()
1202 return PTR_ERR(scm->core_clk); in qcom_scm_probe()
1205 scm->core_clk = NULL; in qcom_scm_probe()
[all …]
H A DMakefile21 obj-$(CONFIG_QCOM_SCM) += qcom-scm.o
22 qcom-scm-objs += qcom_scm.o qcom_scm-smc.o qcom_scm-legacy.o
/OK3568_Linux_fs/kernel/net/core/
H A Dscm.c116 void __scm_destroy(struct scm_cookie *scm) in __scm_destroy() argument
118 struct scm_fp_list *fpl = scm->fp; in __scm_destroy()
122 scm->fp = NULL; in __scm_destroy()
290 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds() argument
295 int fdmax = min_t(int, scm_max_fds(msg), scm->fp->count); in scm_detach_fds()
304 scm_detach_fds_compat(msg, scm); in scm_detach_fds()
309 err = receive_fd_user(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds()
331 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds()
338 __scm_destroy(scm); in scm_detach_fds()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/uim/uim/
H A Duim-module-manager.patch6 scm/Makefile.am | 2 +-
9 --- a/scm/Makefile.am
10 +++ b/scm/Makefile.am
/OK3568_Linux_fs/buildroot/package/python-cheroot/
H A Dpython-cheroot.mk13 PYTHON_CHEROOT_DEPENDENCIES = host-python-setuptools-scm host-python-setuptools-scm-git-archive
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/soc/ti/
H A Dwkup_m3_ipc.txt38 scm: scm@210000 {
39 compatible = "ti,am3-scm", "simple-bus";
/OK3568_Linux_fs/buildroot/package/gauche/
H A Dgauche.mk10 GAUCHE_LICENSE = BSD-3-Clause, Boehm-gc, SRFI (srfi-11.scm), reload (reload.scm)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-filesystems/recipes-utils/f2fs-tools/
H A Df2fs-tools_1.14.0.bb2 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"
11 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git;branch=master \
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/erofs-utils/
H A Derofs-utils_1.4.bb5 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README"
8 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master \
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/
H A Dpython3-setuptools-scm_6.4.2.bb1 SUMMARY = "the blessed package to manage your versions by scm tags"
2 HOMEPAGE = "https://pypi.org/project/setuptools-scm/"
H A Dpython3-jsonschema_4.4.0.bb11 DEPENDS += "${PYTHON_PN}-vcversioner-native ${PYTHON_PN}-setuptools-scm-native"
44 ${PYTHON_PN}-setuptools-scm \
/OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/process/
H A D7.AdvancedTopics.rst28 https://git-scm.com/
30 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
H A D8.Conclusion.rst45 https://www.kernel.org/pub/software/scm/git/docs/
47 https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
/OK3568_Linux_fs/kernel/net/
H A Dcompat.c291 void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds_compat() argument
296 int fdmax = min_t(int, scm_max_fds_compat(msg), scm->fp->count); in scm_detach_fds_compat()
301 err = receive_fd_user(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds_compat()
323 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds_compat()
330 __scm_destroy(scm); in scm_detach_fds_compat()
/OK3568_Linux_fs/buildroot/package/git/
H A Dgit.mk9 GIT_SITE = $(BR2_KERNEL_MIRROR)/software/scm/git
12 GIT_CPE_ID_VENDOR = git-scm

12345678910>>...15