/Linux-v5.15/ipc/ |
D | shm.c | 88 #define shm_unlock(shp) \ argument 89 ipc_unlock(&(shp)->shm_perm) 94 static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp); 115 struct shmid_kernel *shp; in do_shm_rmid() local 117 shp = container_of(ipcp, struct shmid_kernel, shm_perm); in do_shm_rmid() 119 if (shp->shm_nattch) { in do_shm_rmid() 120 shp->shm_perm.mode |= SHM_DEST; in do_shm_rmid() 122 ipc_set_key_private(&shm_ids(ns), &shp->shm_perm); in do_shm_rmid() 123 shm_unlock(shp); in do_shm_rmid() 125 shm_destroy(ns, shp); in do_shm_rmid() [all …]
|
/Linux-v5.15/net/bridge/netfilter/ |
D | ebt_arpreply.c | 27 const unsigned char *shp; in ebt_arpreply_tg() local 40 shp = skb_header_pointer(skb, sizeof(_ah), ETH_ALEN, &_sha); in ebt_arpreply_tg() 41 if (shp == NULL) in ebt_arpreply_tg() 57 *diptr, shp, info->mac, shp); in ebt_arpreply_tg()
|
/Linux-v5.15/include/linux/ |
D | security.h | 449 int security_shm_alloc(struct kern_ipc_perm *shp); 450 void security_shm_free(struct kern_ipc_perm *shp); 451 int security_shm_associate(struct kern_ipc_perm *shp, int shmflg); 452 int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd); 453 int security_shm_shmat(struct kern_ipc_perm *shp, char __user *shmaddr, int shmflg); 1239 static inline int security_shm_alloc(struct kern_ipc_perm *shp) in security_shm_alloc() argument 1244 static inline void security_shm_free(struct kern_ipc_perm *shp) in security_shm_free() argument 1247 static inline int security_shm_associate(struct kern_ipc_perm *shp, in security_shm_associate() argument 1253 static inline int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd) in security_shm_shmctl() argument 1258 static inline int security_shm_shmat(struct kern_ipc_perm *shp, in security_shm_shmat() argument
|
/Linux-v5.15/security/ |
D | security.c | 1966 int security_shm_alloc(struct kern_ipc_perm *shp) in security_shm_alloc() argument 1968 int rc = lsm_ipc_alloc(shp); in security_shm_alloc() 1972 rc = call_int_hook(shm_alloc_security, 0, shp); in security_shm_alloc() 1974 security_shm_free(shp); in security_shm_alloc() 1978 void security_shm_free(struct kern_ipc_perm *shp) in security_shm_free() argument 1980 call_void_hook(shm_free_security, shp); in security_shm_free() 1981 kfree(shp->security); in security_shm_free() 1982 shp->security = NULL; in security_shm_free() 1985 int security_shm_associate(struct kern_ipc_perm *shp, int shmflg) in security_shm_associate() argument 1987 return call_int_hook(shm_associate, 0, shp, shmflg); in security_shm_associate() [all …]
|
/Linux-v5.15/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
D | phy_cmn.c | 354 struct shared_phy *wlc_phy_shared_attach(struct shared_phy_params *shp) in wlc_phy_shared_attach() argument 362 sh->physhim = shp->physhim; in wlc_phy_shared_attach() 363 sh->unit = shp->unit; in wlc_phy_shared_attach() 364 sh->corerev = shp->corerev; in wlc_phy_shared_attach() 366 sh->vid = shp->vid; in wlc_phy_shared_attach() 367 sh->did = shp->did; in wlc_phy_shared_attach() 368 sh->chip = shp->chip; in wlc_phy_shared_attach() 369 sh->chiprev = shp->chiprev; in wlc_phy_shared_attach() 370 sh->chippkg = shp->chippkg; in wlc_phy_shared_attach() 371 sh->sromrev = shp->sromrev; in wlc_phy_shared_attach() [all …]
|
D | phy_hal.h | 171 struct shared_phy *wlc_phy_shared_attach(struct shared_phy_params *shp);
|
/Linux-v5.15/drivers/atm/ |
D | eni.c | 1959 int error,rate,rsv,shp; in eni_change_qos() local 1965 rsv = shp = 0; in eni_change_qos() 1968 if ((flgs & ATM_MF_DEC_SHP) && rate && rate < tx->shaping) shp = 1; in eni_change_qos() 1969 if ((flgs & ATM_MF_INC_SHP) && (!rate || rate > tx->shaping)) shp = 1; in eni_change_qos() 1970 if (!rsv && !shp) return 0; in eni_change_qos() 1971 error = reserve_or_set_tx(vcc,&qos->txtp,rsv,shp); in eni_change_qos() 1973 if (shp && !(flgs & ATM_MF_IMMED)) return 0; in eni_change_qos()
|
/Linux-v5.15/tools/perf/util/ |
D | symbol.h | 40 GElf_Shdr *shp, const char *name, size_t *idx);
|
D | symbol-elf.c | 211 GElf_Shdr *shp, const char *name, size_t *idx) in elf_section_by_name() argument 223 gelf_getshdr(sec, shp); in elf_section_by_name() 224 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name); in elf_section_by_name()
|
/Linux-v5.15/security/selinux/ |
D | hooks.c | 6245 static int selinux_shm_alloc_security(struct kern_ipc_perm *shp) in selinux_shm_alloc_security() argument 6252 isec = selinux_ipc(shp); in selinux_shm_alloc_security() 6256 ad.u.ipc_id = shp->key; in selinux_shm_alloc_security() 6264 static int selinux_shm_associate(struct kern_ipc_perm *shp, int shmflg) in selinux_shm_associate() argument 6270 isec = selinux_ipc(shp); in selinux_shm_associate() 6273 ad.u.ipc_id = shp->key; in selinux_shm_associate() 6281 static int selinux_shm_shmctl(struct kern_ipc_perm *shp, int cmd) in selinux_shm_shmctl() argument 6312 err = ipc_has_perm(shp, perms); in selinux_shm_shmctl() 6316 static int selinux_shm_shmat(struct kern_ipc_perm *shp, in selinux_shm_shmat() argument 6326 return ipc_has_perm(shp, perms); in selinux_shm_shmat()
|
/Linux-v5.15/drivers/staging/unisys/visorhba/ |
D | visorhba_main.c | 409 static const char *visorhba_get_info(struct Scsi_Host *shp) in visorhba_get_info() argument
|
/Linux-v5.15/Documentation/scsi/ |
D | scsi_mid_low_api.rst | 606 * @shp: pointer to scsi host instance to unregister. 619 void scsi_unregister(struct Scsi_Host * shp) 803 * @shp: host to supply information about 827 const char * info(struct Scsi_Host * shp)
|
/Linux-v5.15/drivers/scsi/ |
D | scsi_debug.c | 5759 static const char *scsi_debug_info(struct Scsi_Host *shp) in scsi_debug_info() argument
|