Home
last modified time | relevance | path

Searched refs:spp (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.4/arch/powerpc/mm/book3s64/
Dsubpage_prot.c90 u32 **spm, *spp; in subpage_prot_clear() local
113 spp = spm[(addr >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1)]; in subpage_prot_clear()
114 if (!spp) in subpage_prot_clear()
116 spp += (addr >> PAGE_SHIFT) & (SBP_L1_COUNT - 1); in subpage_prot_clear()
123 memset(spp, 0, nw * sizeof(u32)); in subpage_prot_clear()
193 u32 **spm, *spp; in SYSCALL_DEFINE3() local
252 spp = *spm; in SYSCALL_DEFINE3()
253 if (!spp) { in SYSCALL_DEFINE3()
254 spp = (u32 *)get_zeroed_page(GFP_KERNEL); in SYSCALL_DEFINE3()
255 if (!spp) in SYSCALL_DEFINE3()
[all …]
Dhash_utils.c1159 u32 spp = 0; in subpage_protection() local
1178 spp = sbpp[(ea >> PAGE_SHIFT) & (SBP_L1_COUNT - 1)]; in subpage_protection()
1181 spp >>= 30 - 2 * ((ea >> 12) & 0xf); in subpage_protection()
1189 spp = ((spp & 2) ? _PAGE_RWX : 0) | ((spp & 1) ? _PAGE_WRITE : 0); in subpage_protection()
1190 return spp; in subpage_protection()
1409 int spp = subpage_protection(mm, ea); in hash_page_mm() local
1410 if (access & spp) in hash_page_mm()
1414 flags, ssize, spp); in hash_page_mm()
/Linux-v5.4/drivers/scsi/libfc/
Dfc_rport.c1116 struct fc_els_spp spp; in fc_rport_prli_resp() member
1157 resp_code = (pp->spp.spp_flags & FC_SPP_RESP_MASK); in fc_rport_prli_resp()
1159 pp->spp.spp_flags, pp->spp.spp_type); in fc_rport_prli_resp()
1160 rdata->spp_type = pp->spp.spp_type; in fc_rport_prli_resp()
1168 if (pp->prli.prli_spp_len < sizeof(pp->spp)) { in fc_rport_prli_resp()
1173 fcp_parm = ntohl(pp->spp.spp_params); in fc_rport_prli_resp()
1186 &pp->spp, &temp_spp); in fc_rport_prli_resp()
1192 !(pp->spp.spp_flags & FC_SPP_EST_IMG_PAIR)) { in fc_rport_prli_resp()
1236 struct fc_els_spp spp; in fc_rport_enter_prli() member
1277 prov->prli(rdata, sizeof(pp->spp), NULL, &pp->spp); in fc_rport_enter_prli()
[all …]
/Linux-v5.4/drivers/target/tcm_fc/
Dtfc_sess.c348 const struct fc_els_spp *rspp, struct fc_els_spp *spp) in ft_prli_locked() argument
376 spp->spp_flags |= FC_SPP_EST_IMG_PAIR; in ft_prli_locked()
382 spp->spp_flags &= ~FC_SPP_EST_IMG_PAIR; in ft_prli_locked()
400 fcp_parm = ntohl(spp->spp_params); in ft_prli_locked()
402 spp->spp_params = htonl(fcp_parm | FCP_SPPF_TARG_FCN); in ft_prli_locked()
406 fcp_parm = ntohl(spp->spp_params); in ft_prli_locked()
408 spp->spp_params = htonl(fcp_parm); in ft_prli_locked()
422 const struct fc_els_spp *rspp, struct fc_els_spp *spp) in ft_prli() argument
427 ret = ft_prli_locked(rdata, spp_len, rspp, spp); in ft_prli()
/Linux-v5.4/arch/powerpc/platforms/8xx/
Dmicropatch.c344 struct spi_pram *spp; in cpm_load_patch() local
350 spp = (struct spi_pram *)&cp->cp_dparam[PROFF_SPI]; in cpm_load_patch()
351 out_be16(&spp->rpbase, (rpbase + sizeof(iic_t) + 31) & ~31); in cpm_load_patch()
/Linux-v5.4/security/smack/
Dsmack_lsm.c2280 struct smk_port_label *spp; in smack_sk_free_security() local
2284 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) { in smack_sk_free_security()
2285 if (spp->smk_sock != sk) in smack_sk_free_security()
2287 spp->smk_can_reuse = 1; in smack_sk_free_security()
2534 struct smk_port_label *spp; in smk_ipv6_port_label() local
2544 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) { in smk_ipv6_port_label()
2545 if (sk != spp->smk_sock) in smk_ipv6_port_label()
2547 spp->smk_in = ssp->smk_in; in smk_ipv6_port_label()
2548 spp->smk_out = ssp->smk_out; in smk_ipv6_port_label()
2573 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) { in smk_ipv6_port_label()
[all …]
/Linux-v5.4/fs/ocfs2/cluster/
Dheartbeat.c516 unsigned int spp = reg->hr_slots_per_page; in o2hb_setup_one_bio() local
541 current_page = cs / spp; in o2hb_setup_one_bio()
545 (max_slots-cs) * (PAGE_SIZE/spp) ); in o2hb_setup_one_bio()
553 cs += vec_len / (PAGE_SIZE/spp); in o2hb_setup_one_bio()
1673 unsigned int spp = reg->hr_slots_per_page; in o2hb_map_slot_data() local
1694 reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp; in o2hb_map_slot_data()
1697 reg->hr_num_pages, reg->hr_blocks, spp); in o2hb_map_slot_data()
1711 last_slot = i * spp; in o2hb_map_slot_data()
1714 (j < spp) && ((j + last_slot) < reg->hr_blocks); in o2hb_map_slot_data()
/Linux-v5.4/include/scsi/
Dfc_encode.h648 struct fc_els_spp spp; in fc_prli_fill() member
656 pp->spp.spp_type = FC_TYPE_FCP; in fc_prli_fill()
657 pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR; in fc_prli_fill()
658 pp->spp.spp_params = htonl(lport->service_params); in fc_prli_fill()
/Linux-v5.4/Documentation/devicetree/bindings/pinctrl/
Dpinctrl_spear.txt138 "clcd", "emi", "fsmc", "spp", "sdhci", "i2s", "uart1", "uart1_modem",
/Linux-v5.4/drivers/media/platform/qcom/camss/
Dcamss-csid.c83 u8 spp; /* bus samples per pixel */ member
651 f->width * format->bpp * format->spp / 8; in csid_set_stream()
/Linux-v5.4/Documentation/admin-guide/
Dkernel-parameters.txt3333 up parallel port mode and sets it to spp.
3335 Format: [spp|ps2|epp|ecp|ecpepp]