/Linux-v4.19/fs/ecryptfs/ |
D | read_write.c | 202 int rc2; in ecryptfs_write() local 204 rc2 = ecryptfs_write_inode_size_to_metadata( in ecryptfs_write() 206 if (rc2) { in ecryptfs_write() 209 "rc = [%d]\n", rc2); in ecryptfs_write() 211 rc = rc2; in ecryptfs_write()
|
/Linux-v4.19/drivers/net/ethernet/sfc/ |
D | ef10_sriov.c | 568 int rc = 0, rc2 = 0; in efx_ef10_sriov_set_vf_vlan() local 633 rc2 = efx_ef10_vport_add_mac(efx, vf->vport_id, vf->mac); in efx_ef10_sriov_set_vf_vlan() 634 if (rc2) { in efx_ef10_sriov_set_vf_vlan() 641 rc2 = efx_ef10_evb_port_assign(efx, vf->vport_id, vf_i); in efx_ef10_sriov_set_vf_vlan() 642 if (rc2) in efx_ef10_sriov_set_vf_vlan() 649 rc2 = efx_ef10_vadaptor_alloc(vf->efx, EVB_PORT_ID_ASSIGNED); in efx_ef10_sriov_set_vf_vlan() 650 if (rc2) in efx_ef10_sriov_set_vf_vlan() 656 rc2 = vf->efx->type->filter_table_probe(vf->efx); in efx_ef10_sriov_set_vf_vlan() 657 if (rc2) in efx_ef10_sriov_set_vf_vlan() 663 rc2 = efx_net_open(vf->efx->net_dev); in efx_ef10_sriov_set_vf_vlan() [all …]
|
D | siena.c | 102 int rc, rc2; in siena_test_chip() local 120 rc2 = efx_reset_up(efx, reset_method, rc == 0); in siena_test_chip() 121 return rc ? rc : rc2; in siena_test_chip()
|
D | efx.c | 812 int rc, rc2; in efx_realloc_channels() local 892 rc2 = efx_soft_enable_interrupts(efx); in efx_realloc_channels() 893 if (rc2) { in efx_realloc_channels() 894 rc = rc ? rc : rc2; in efx_realloc_channels() 2760 int rc, rc2; in efx_reset() local 2794 rc2 = efx_reset_up(efx, method, !disabled); in efx_reset() 2795 if (rc2) { in efx_reset() 2798 rc = rc2; in efx_reset()
|
D | ef10.c | 5534 int rc, rc2; in efx_ef10_vport_set_mac_address() local 5561 rc2 = efx_ef10_vport_add_mac(efx, nic_data->vport_id, mac_old); in efx_ef10_vport_set_mac_address() 5562 if (rc2) { in efx_ef10_vport_set_mac_address() 5570 rc2 = efx_ef10_vadaptor_alloc(efx, nic_data->vport_id); in efx_ef10_vport_set_mac_address() 5571 if (rc2) in efx_ef10_vport_set_mac_address() 5575 rc2 = efx_ef10_filter_table_probe(efx); in efx_ef10_vport_set_mac_address() 5577 if (rc2) in efx_ef10_vport_set_mac_address() 5580 rc2 = efx_net_open(efx->net_dev); in efx_ef10_vport_set_mac_address() 5581 if (rc2) in efx_ef10_vport_set_mac_address() 5593 return rc ? rc : rc2; in efx_ef10_vport_set_mac_address() [all …]
|
/Linux-v4.19/security/selinux/ |
D | avc.c | 1050 int rc = 0, rc2; in avc_has_extended_perms() local 1105 rc2 = avc_xperms_audit(state, ssid, tsid, tclass, requested, in avc_has_extended_perms() 1107 if (rc2) in avc_has_extended_perms() 1108 return rc2; in avc_has_extended_perms() 1182 int rc, rc2; in avc_has_perm() local 1187 rc2 = avc_audit(state, ssid, tsid, tclass, requested, &avd, rc, in avc_has_perm() 1189 if (rc2) in avc_has_perm() 1190 return rc2; in avc_has_perm() 1200 int rc, rc2; in avc_has_perm_flags() local 1205 rc2 = avc_audit(state, ssid, tsid, tclass, requested, &avd, rc, in avc_has_perm_flags() [all …]
|
D | hooks.c | 1795 int rc2 = avc_audit(&selinux_state, in cred_has_capability() local 1797 if (rc2) in cred_has_capability() 1798 return rc2; in cred_has_capability() 3171 int rc, rc2; in selinux_inode_permission() local 3201 rc2 = audit_inode_permission(inode, perms, audited, denied, rc, flags); in selinux_inode_permission() 3202 if (rc2) in selinux_inode_permission() 3203 return rc2; in selinux_inode_permission()
|
/Linux-v4.19/arch/powerpc/mm/ |
D | pgtable-hash64.c | 119 int rc2 = htab_remove_mapping(start, start + page_size, in hash__vmemmap_create_mapping() local 122 BUG_ON(rc2 && (rc2 != -ENOENT)); in hash__vmemmap_create_mapping()
|
D | hash_utils_64.c | 794 int rc2 = htab_remove_mapping(start, end, mmu_linear_psize, in hash__create_section_mapping() local 796 BUG_ON(rc2 && (rc2 != -ENOENT)); in hash__create_section_mapping()
|
/Linux-v4.19/drivers/ide/ |
D | qd65xx.c | 426 int rc1, rc2 = -ENODEV; in qd65xx_init() local 433 rc2 = qd_probe(0xb0); in qd65xx_init() 435 if (rc1 < 0 && rc2 < 0) in qd65xx_init()
|
/Linux-v4.19/drivers/net/ethernet/ibm/ |
D | ibmveth.c | 782 int rc1 = 0, rc2 = 0; in ibmveth_set_csum_offload() local 856 rc2 = ibmveth_open(dev); in ibmveth_set_csum_offload() 858 return rc1 ? rc1 : rc2; in ibmveth_set_csum_offload() 866 int rc1 = 0, rc2 = 0; in ibmveth_set_tso() local 918 rc2 = ibmveth_open(dev); in ibmveth_set_tso() 920 return rc1 ? rc1 : rc2; in ibmveth_set_tso() 929 int rc1 = 0, rc2 = 0; in ibmveth_set_features() local 940 rc2 = ibmveth_set_tso(dev, large_send); in ibmveth_set_features() 941 if (rc2 && !adapter->large_send) in ibmveth_set_features() 946 return rc1 ? rc1 : rc2; in ibmveth_set_features()
|
/Linux-v4.19/net/llc/ |
D | llc_conn.c | 475 int rc2 = (*next_action)(sk, skb); in llc_exec_conn_trans_actions() local 477 if (rc2 == 2) { in llc_exec_conn_trans_actions() 478 rc = rc2; in llc_exec_conn_trans_actions() 480 } else if (rc2) in llc_exec_conn_trans_actions()
|
/Linux-v4.19/arch/mips/kvm/ |
D | 00README.txt | 24 …Linux-3.7-rc2 based SMP guest hangs due to the following code sequence in the generated TLB handle…
|
/Linux-v4.19/drivers/net/ethernet/sfc/falcon/ |
D | efx.c | 772 int rc, rc2; in ef4_realloc_channels() local 852 rc2 = ef4_soft_enable_interrupts(efx); in ef4_realloc_channels() 853 if (rc2) { in ef4_realloc_channels() 854 rc = rc ? rc : rc2; in ef4_realloc_channels() 2434 int rc, rc2; in ef4_reset() local 2468 rc2 = ef4_reset_up(efx, method, !disabled); in ef4_reset() 2469 if (rc2) { in ef4_reset() 2472 rc = rc2; in ef4_reset()
|
D | falcon.c | 1903 int rc, rc2; in falcon_b0_test_chip() local 1925 rc2 = ef4_reset_up(efx, reset_method, rc == 0); in falcon_b0_test_chip() 1926 return rc ? rc : rc2; in falcon_b0_test_chip()
|
/Linux-v4.19/Documentation/scsi/ |
D | lpfc.txt | 59 is contained in the 2.6.10-rc2 (and later) patch kits. As such, this
|
/Linux-v4.19/drivers/net/ethernet/hisilicon/hns/ |
D | hns_ethtool.c | 782 int rc1, rc2; in hns_set_coalesce() local 799 rc2 = ops->set_coalesce_frames(priv->ae_handle, in hns_set_coalesce() 803 if (rc1 || rc2) in hns_set_coalesce()
|
/Linux-v4.19/drivers/scsi/hisi_sas/ |
D | hisi_sas_main.c | 1411 int rc2; in hisi_sas_abort_task() local 1420 rc2 = hisi_sas_internal_task_abort(hisi_hba, device, in hisi_sas_abort_task() 1422 if (rc2 < 0) { in hisi_sas_abort_task() 1423 dev_err(dev, "abort task: internal abort (%d)\n", rc2); in hisi_sas_abort_task() 1434 if (rc == TMF_RESP_FUNC_COMPLETE && rc2 != TMF_RESP_FUNC_SUCC) { in hisi_sas_abort_task()
|
/Linux-v4.19/drivers/net/ethernet/qlogic/qed/ |
D | qed_dev.c | 1945 int rc, rc2 = 0; in qed_hw_stop() local 1961 rc2 = -EINVAL; in qed_hw_stop() 1975 rc2 = -EINVAL; in qed_hw_stop() 1988 rc2 = -EINVAL; in qed_hw_stop() 2022 rc2 = -EINVAL; in qed_hw_stop() 2038 rc2 = -EINVAL; in qed_hw_stop() 2042 return rc2; in qed_hw_stop()
|
/Linux-v4.19/drivers/s390/net/ |
D | qeth_l2_main.c | 1081 int rc = 0, rc2 = 0, rc3 = 0; in __qeth_l2_set_offline() local 1097 rc2 = ccw_device_set_offline(CARD_WDEV(card)); in __qeth_l2_set_offline() 1100 rc = (rc2) ? rc2 : rc3; in __qeth_l2_set_offline()
|
D | qeth_l3_main.c | 2727 int rc = 0, rc2 = 0, rc3 = 0; in __qeth_l3_set_offline() local 2748 rc2 = ccw_device_set_offline(CARD_WDEV(card)); in __qeth_l3_set_offline() 2751 rc = (rc2) ? rc2 : rc3; in __qeth_l3_set_offline()
|
D | qeth_core_main.c | 1576 int rc1 = 0, rc2 = 0, rc3 = 0; in qeth_halt_channels() local 1580 rc2 = qeth_halt_channel(&card->write); in qeth_halt_channels() 1584 if (rc2) in qeth_halt_channels() 1585 return rc2; in qeth_halt_channels() 1591 int rc1 = 0, rc2 = 0, rc3 = 0; in qeth_clear_channels() local 1595 rc2 = qeth_clear_channel(&card->write); in qeth_clear_channels() 1599 if (rc2) in qeth_clear_channels() 1600 return rc2; in qeth_clear_channels()
|
/Linux-v4.19/Documentation/power/ |
D | video.txt | 68 http://dev.gentoo.org/~marineam/patch-radeonfb-2.6.11-rc2-mm2.
|
/Linux-v4.19/Documentation/ |
D | static-keys.txt | 292 performance improvement. Testing done on 3.3.0-rc2:
|
/Linux-v4.19/Documentation/networking/ |
D | netdev-FAQ.rst | 49 rc2 is released. This repeats on a roughly weekly basis until rc7
|