/kernel/linux/linux-5.10/crypto/ |
H A D | ctr.c | 98 static int crypto_ctr_crypt(struct skcipher_request *req) in crypto_ctr_crypt() argument 100 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in crypto_ctr_crypt() 107 err = skcipher_walk_virt(&walk, req, false); in crypto_ctr_crypt() 189 static int crypto_rfc3686_crypt(struct skcipher_request *req) in crypto_rfc3686_crypt() argument 191 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in crypto_rfc3686_crypt() 196 (void *)PTR_ALIGN((u8 *)skcipher_request_ctx(req), align + 1); in crypto_rfc3686_crypt() 202 memcpy(iv + CTR_RFC3686_NONCE_SIZE, req->iv, CTR_RFC3686_IV_SIZE); in crypto_rfc3686_crypt() 209 skcipher_request_set_callback(subreq, req->base.flags, in crypto_rfc3686_crypt() 210 req->base.complete, req in crypto_rfc3686_crypt() [all...] |
/kernel/linux/linux-5.10/drivers/clk/at91/ |
H A D | clk-peripheral.c | 242 static void clk_sam9x5_peripheral_best_diff(struct clk_rate_request *req, in clk_sam9x5_peripheral_best_diff() argument 249 unsigned long tmp_diff = abs(req->rate - tmp_rate); in clk_sam9x5_peripheral_best_diff() 254 req->best_parent_rate = parent_rate; in clk_sam9x5_peripheral_best_diff() 255 req->best_parent_hw = parent; in clk_sam9x5_peripheral_best_diff() 260 struct clk_rate_request *req) in clk_sam9x5_peripheral_determine_rate() 264 struct clk_rate_request req_parent = *req; in clk_sam9x5_peripheral_determine_rate() 281 clk_sam9x5_peripheral_best_diff(req, parent, parent_rate, in clk_sam9x5_peripheral_determine_rate() 284 if (!best_diff || best_rate <= req->rate) in clk_sam9x5_peripheral_determine_rate() 297 req_parent.rate = req->rate << shift; in clk_sam9x5_peripheral_determine_rate() 302 clk_sam9x5_peripheral_best_diff(req, paren in clk_sam9x5_peripheral_determine_rate() 259 clk_sam9x5_peripheral_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) clk_sam9x5_peripheral_determine_rate() argument [all...] |
/kernel/linux/linux-5.10/drivers/target/iscsi/cxgbit/ |
H A D | cxgbit_ddp.c | 67 struct ulp_mem_io *req; in cxgbit_ppod_init_idata() local 79 req = __skb_put(skb, wr_len); in cxgbit_ppod_init_idata() 80 INIT_ULPTX_WR(req, wr_len, 0, tid); in cxgbit_ppod_init_idata() 81 req->wr.wr_hi = htonl(FW_WR_OP_V(FW_ULPTX_WR) | in cxgbit_ppod_init_idata() 83 req->cmd = htonl(ULPTX_CMD_V(ULP_TX_MEM_WRITE) | in cxgbit_ppod_init_idata() 86 req->dlen = htonl(ULP_MEMIO_DATA_LEN_V(dlen >> 5)); in cxgbit_ppod_init_idata() 87 req->lock_addr = htonl(ULP_MEMIO_ADDR_V(pm_addr >> 5)); in cxgbit_ppod_init_idata() 88 req->len16 = htonl(DIV_ROUND_UP(wr_len - sizeof(req->wr), 16)); in cxgbit_ppod_init_idata() 90 idata = (struct ulptx_idata *)(req in cxgbit_ppod_init_idata() 105 struct ulp_mem_io *req; cxgbit_ppod_write_idata() local [all...] |
/kernel/linux/linux-5.10/include/linux/sunrpc/ |
H A D | xprt.h | 78 u32 rq_seqno; /* gss seq no. used on req. */ 137 struct rpc_rqst *req); 143 void (*prepare_request)(struct rpc_rqst *req); 144 int (*send_request)(struct rpc_rqst *req); 301 static inline int bc_prealloc(struct rpc_rqst *req) in bc_prealloc() argument 303 return test_bit(RPC_BC_PA_IN_USE, &req->rq_bc_pa_state); in bc_prealloc() 306 static inline int bc_prealloc(struct rpc_rqst *req) in bc_prealloc() argument 350 struct rpc_rqst *req); 351 void xprt_request_prepare(struct rpc_rqst *req); 360 int xprt_adjust_timeout(struct rpc_rqst *req); [all...] |
/kernel/linux/linux-5.10/net/9p/ |
H A D | trans_xen.c | 88 static int p9_xen_cancel(struct p9_client *client, struct p9_req_t *req) in p9_xen_cancel() argument 200 struct p9_req_t *req; in p9_xen_response() local 225 req = p9_tag_lookup(priv->client, h.tag); in p9_xen_response() 226 if (!req || req->status != REQ_STATUS_SENT) { in p9_xen_response() 227 dev_warn(&priv->dev->dev, "Wrong req tag=%x\n", h.tag); in p9_xen_response() 234 if (h.size > req->rc.capacity) { in p9_xen_response() 237 h.size, h.tag, req->rc.capacity); in p9_xen_response() 238 req->status = REQ_STATUS_ERROR; in p9_xen_response() 242 memcpy(&req in p9_xen_response() [all...] |
/kernel/linux/linux-5.10/drivers/power/supply/ |
H A D | cros_usbpd-charger.c | 158 struct ec_params_usb_pd_info_request req; in cros_usbpd_charger_get_discovery_info() local 161 req.port = port->port_number; in cros_usbpd_charger_get_discovery_info() 165 &req, sizeof(req), in cros_usbpd_charger_get_discovery_info() 187 struct ec_params_usb_pd_power_info req; in cros_usbpd_charger_get_power_info() local 192 req.port = port->port_number; in cros_usbpd_charger_get_power_info() 195 &req, sizeof(req), in cros_usbpd_charger_get_power_info() 332 struct ec_params_external_power_limit_v1 req; in cros_usbpd_charger_set_ext_power_limit() local 335 req in cros_usbpd_charger_set_ext_power_limit() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/ |
H A D | radeon_acpi.c | 312 * @req: atif sbios request struct 320 struct atif_sbios_requests *req) in radeon_atif_get_sbios_requests() 335 memset(req, 0, sizeof(*req)); in radeon_atif_get_sbios_requests() 337 size = min(sizeof(*req), size); in radeon_atif_get_sbios_requests() 338 memcpy(req, info->buffer.pointer, size); in radeon_atif_get_sbios_requests() 339 DRM_DEBUG_DRIVER("SBIOS pending requests: %#x\n", req->pending); in radeon_atif_get_sbios_requests() 341 count = hweight32(req->pending); in radeon_atif_get_sbios_requests() 362 struct atif_sbios_requests req; in radeon_atif_handler() local 379 count = radeon_atif_get_sbios_requests(handle, &req); in radeon_atif_handler() 319 radeon_atif_get_sbios_requests(acpi_handle handle, struct atif_sbios_requests *req) radeon_atif_get_sbios_requests() argument [all...] |
/kernel/linux/linux-6.6/fs/ceph/ |
H A D | mds_client.h | 225 unsigned long s_renew_requested; /* last time we sent a renew req */ 249 struct ceph_mds_request *req); 254 struct ceph_mds_request *req); 536 extern void ceph_invalidate_dir_request(struct ceph_mds_request *req); 537 extern int ceph_alloc_readdir_reply_buffer(struct ceph_mds_request *req, 543 struct ceph_mds_request *req); 545 struct ceph_mds_request *req, 549 struct ceph_mds_request *req); 550 extern void ceph_mdsc_release_dir_caps(struct ceph_mds_request *req); 551 extern void ceph_mdsc_release_dir_caps_no_check(struct ceph_mds_request *req); 552 ceph_mdsc_get_request(struct ceph_mds_request *req) ceph_mdsc_get_request() argument 557 ceph_mdsc_put_request(struct ceph_mds_request *req) ceph_mdsc_put_request() argument [all...] |
/kernel/linux/linux-6.6/drivers/target/iscsi/cxgbit/ |
H A D | cxgbit_ddp.c | 67 struct ulp_mem_io *req; in cxgbit_ppod_init_idata() local 79 req = __skb_put(skb, wr_len); in cxgbit_ppod_init_idata() 80 INIT_ULPTX_WR(req, wr_len, 0, tid); in cxgbit_ppod_init_idata() 81 req->wr.wr_hi = htonl(FW_WR_OP_V(FW_ULPTX_WR) | in cxgbit_ppod_init_idata() 83 req->cmd = htonl(ULPTX_CMD_V(ULP_TX_MEM_WRITE) | in cxgbit_ppod_init_idata() 86 req->dlen = htonl(ULP_MEMIO_DATA_LEN_V(dlen >> 5)); in cxgbit_ppod_init_idata() 87 req->lock_addr = htonl(ULP_MEMIO_ADDR_V(pm_addr >> 5)); in cxgbit_ppod_init_idata() 88 req->len16 = htonl(DIV_ROUND_UP(wr_len - sizeof(req->wr), 16)); in cxgbit_ppod_init_idata() 90 idata = (struct ulptx_idata *)(req in cxgbit_ppod_init_idata() 105 struct ulp_mem_io *req; cxgbit_ppod_write_idata() local [all...] |
/kernel/linux/linux-6.6/drivers/power/supply/ |
H A D | cros_usbpd-charger.c | 158 struct ec_params_usb_pd_info_request req; in cros_usbpd_charger_get_discovery_info() local 161 req.port = port->port_number; in cros_usbpd_charger_get_discovery_info() 165 &req, sizeof(req), in cros_usbpd_charger_get_discovery_info() 187 struct ec_params_usb_pd_power_info req; in cros_usbpd_charger_get_power_info() local 192 req.port = port->port_number; in cros_usbpd_charger_get_power_info() 195 &req, sizeof(req), in cros_usbpd_charger_get_power_info() 332 struct ec_params_external_power_limit_v1 req; in cros_usbpd_charger_set_ext_power_limit() local 335 req in cros_usbpd_charger_set_ext_power_limit() [all...] |
/kernel/linux/linux-6.6/drivers/clk/at91/ |
H A D | clk-peripheral.c | 254 static void clk_sam9x5_peripheral_best_diff(struct clk_rate_request *req, in clk_sam9x5_peripheral_best_diff() argument 261 unsigned long tmp_diff = abs(req->rate - tmp_rate); in clk_sam9x5_peripheral_best_diff() 266 req->best_parent_rate = parent_rate; in clk_sam9x5_peripheral_best_diff() 267 req->best_parent_hw = parent; in clk_sam9x5_peripheral_best_diff() 272 struct clk_rate_request *req) in clk_sam9x5_peripheral_determine_rate() 292 clk_sam9x5_peripheral_best_diff(req, parent, parent_rate, in clk_sam9x5_peripheral_determine_rate() 295 if (!best_diff || best_rate <= req->rate) in clk_sam9x5_peripheral_determine_rate() 310 clk_hw_forward_rate_request(hw, req, parent, &req_parent, req->rate << shift); in clk_sam9x5_peripheral_determine_rate() 314 clk_sam9x5_peripheral_best_diff(req, paren in clk_sam9x5_peripheral_determine_rate() 271 clk_sam9x5_peripheral_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) clk_sam9x5_peripheral_determine_rate() argument [all...] |
/kernel/linux/linux-6.6/drivers/crypto/ |
H A D | geode-aes.c | 263 static int geode_skcipher_crypt(struct skcipher_request *req, int mode, int dir) in geode_skcipher_crypt() argument 265 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in geode_skcipher_crypt() 272 struct skcipher_request *subreq = skcipher_request_ctx(req); in geode_skcipher_crypt() 274 *subreq = *req; in geode_skcipher_crypt() 282 err = skcipher_walk_virt(&walk, req, false); in geode_skcipher_crypt() 294 static int geode_cbc_encrypt(struct skcipher_request *req) in geode_cbc_encrypt() argument 296 return geode_skcipher_crypt(req, AES_MODE_CBC, AES_DIR_ENCRYPT); in geode_cbc_encrypt() 299 static int geode_cbc_decrypt(struct skcipher_request *req) in geode_cbc_decrypt() argument 301 return geode_skcipher_crypt(req, AES_MODE_CBC, AES_DIR_DECRYPT); in geode_cbc_decrypt() 304 static int geode_ecb_encrypt(struct skcipher_request *req) in geode_ecb_encrypt() argument 309 geode_ecb_decrypt(struct skcipher_request *req) geode_ecb_decrypt() argument [all...] |
/kernel/linux/linux-6.6/crypto/ |
H A D | sm2.c | 378 static int sm2_verify(struct akcipher_request *req) in sm2_verify() argument 380 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req); in sm2_verify() 390 buffer = kmalloc(req->src_len + req->dst_len, GFP_KERNEL); in sm2_verify() 394 sg_pcopy_to_buffer(req->src, in sm2_verify() 395 sg_nents_for_len(req->src, req->src_len + req->dst_len), in sm2_verify() 396 buffer, req->src_len + req in sm2_verify() [all...] |
H A D | ctr.c | 99 static int crypto_ctr_crypt(struct skcipher_request *req) in crypto_ctr_crypt() argument 101 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in crypto_ctr_crypt() 108 err = skcipher_walk_virt(&walk, req, false); in crypto_ctr_crypt() 190 static int crypto_rfc3686_crypt(struct skcipher_request *req) in crypto_rfc3686_crypt() argument 192 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in crypto_rfc3686_crypt() 197 (void *)PTR_ALIGN((u8 *)skcipher_request_ctx(req), align + 1); in crypto_rfc3686_crypt() 203 memcpy(iv + CTR_RFC3686_NONCE_SIZE, req->iv, CTR_RFC3686_IV_SIZE); in crypto_rfc3686_crypt() 210 skcipher_request_set_callback(subreq, req->base.flags, in crypto_rfc3686_crypt() 211 req->base.complete, req in crypto_rfc3686_crypt() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/ |
H A D | radeon_acpi.c | 311 * @req: atif sbios request struct 319 struct atif_sbios_requests *req) in radeon_atif_get_sbios_requests() 334 memset(req, 0, sizeof(*req)); in radeon_atif_get_sbios_requests() 336 size = min(sizeof(*req), size); in radeon_atif_get_sbios_requests() 337 memcpy(req, info->buffer.pointer, size); in radeon_atif_get_sbios_requests() 338 DRM_DEBUG_DRIVER("SBIOS pending requests: %#x\n", req->pending); in radeon_atif_get_sbios_requests() 340 count = hweight32(req->pending); in radeon_atif_get_sbios_requests() 361 struct atif_sbios_requests req; in radeon_atif_handler() local 378 count = radeon_atif_get_sbios_requests(handle, &req); in radeon_atif_handler() 318 radeon_atif_get_sbios_requests(acpi_handle handle, struct atif_sbios_requests *req) radeon_atif_get_sbios_requests() argument [all...] |
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-verity-target.c | 97 static int verity_hash_update(struct dm_verity *v, struct ahash_request *req, in verity_hash_update() argument 105 ahash_request_set_crypt(req, &sg, NULL, len); in verity_hash_update() 106 return crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 114 ahash_request_set_crypt(req, &sg, NULL, this_step); in verity_hash_update() 115 r = crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 128 static int verity_hash_init(struct dm_verity *v, struct ahash_request *req, in verity_hash_init() argument 133 ahash_request_set_tfm(req, v->tfm); in verity_hash_init() 134 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP | in verity_hash_init() 139 r = crypto_wait_req(crypto_ahash_init(req), wait); in verity_hash_init() 147 r = verity_hash_update(v, req, in verity_hash_init() 152 verity_hash_final(struct dm_verity *v, struct ahash_request *req, u8 *digest, struct crypto_wait *wait) verity_hash_final() argument 172 verity_hash(struct dm_verity *v, struct ahash_request *req, const u8 *data, size_t len, u8 *digest) verity_hash() argument 377 struct ahash_request *req = verity_io_hash_req(v, io); verity_for_io_block() local 483 struct ahash_request *req = verity_io_hash_req(v, io); verity_verify_io() local 879 struct ahash_request *req; verity_alloc_zero_digest() local [all...] |
/kernel/linux/linux-5.10/drivers/usb/gadget/udc/ |
H A D | s3c-hsudc.c | 118 * @req: Reference to USB gadget transfer request. 122 struct usb_request req; member 161 static inline struct s3c_hsudc_req *our_req(struct usb_request *req) in our_req() argument 163 return container_of(req, struct s3c_hsudc_req, req); in our_req() 200 hsreq->req.status = status; in s3c_hsudc_complete_request() 209 usb_gadget_giveback_request(&hsep->ep, &hsreq->req); in s3c_hsudc_complete_request() 288 buf = hsreq->req.buf + hsreq->req.actual; in s3c_hsudc_write_fifo() 291 length = hsreq->req in s3c_hsudc_write_fifo() [all...] |
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-verity-target.c | 104 static int verity_hash_update(struct dm_verity *v, struct ahash_request *req, in verity_hash_update() argument 112 ahash_request_set_crypt(req, &sg, NULL, len); in verity_hash_update() 113 return crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 123 ahash_request_set_crypt(req, &sg, NULL, this_step); in verity_hash_update() 124 r = crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 137 static int verity_hash_init(struct dm_verity *v, struct ahash_request *req, in verity_hash_init() argument 142 ahash_request_set_tfm(req, v->tfm); in verity_hash_init() 143 ahash_request_set_callback(req, in verity_hash_init() 148 r = crypto_wait_req(crypto_ahash_init(req), wait); in verity_hash_init() 157 r = verity_hash_update(v, req, in verity_hash_init() 162 verity_hash_final(struct dm_verity *v, struct ahash_request *req, u8 *digest, struct crypto_wait *wait) verity_hash_final() argument 182 verity_hash(struct dm_verity *v, struct ahash_request *req, const u8 *data, size_t len, u8 *digest, bool may_sleep) verity_hash() argument 413 struct ahash_request *req = verity_io_hash_req(v, io); verity_for_io_block() local 588 struct ahash_request *req = verity_io_hash_req(v, io); verity_verify_io() local 1059 struct ahash_request *req; verity_alloc_zero_digest() local [all...] |
/kernel/linux/linux-6.6/drivers/media/common/videobuf2/ |
H A D | videobuf2-v4l2.c | 371 struct media_request *req; in vb2_queue_or_prepare_buf() local 465 req = media_request_get_by_fd(mdev, b->request_fd); in vb2_queue_or_prepare_buf() 466 if (IS_ERR(req)) { in vb2_queue_or_prepare_buf() 468 return PTR_ERR(req); in vb2_queue_or_prepare_buf() 475 if (req->state != MEDIA_REQUEST_STATE_IDLE && in vb2_queue_or_prepare_buf() 476 req->state != MEDIA_REQUEST_STATE_UPDATING) { in vb2_queue_or_prepare_buf() 478 media_request_put(req); in vb2_queue_or_prepare_buf() 482 *p_req = req; in vb2_queue_or_prepare_buf() 710 int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req) in vb2_reqbufs() argument 712 int ret = vb2_verify_memory_type(q, req in vb2_reqbufs() 805 struct media_request *req = NULL; vb2_qbuf() local 1285 vb2_request_validate(struct media_request *req) vb2_request_validate() argument 1312 vb2_request_queue(struct media_request *req) vb2_request_queue() argument [all...] |
/kernel/linux/linux-6.6/drivers/s390/scsi/ |
H A D | zfcp_dbf.c | 68 * @req: request for which a response was received 70 void zfcp_dbf_hba_fsf_res(char *tag, int level, struct zfcp_fsf_req *req) in zfcp_dbf_hba_fsf_res() argument 72 struct zfcp_dbf *dbf = req->adapter->dbf; in zfcp_dbf_hba_fsf_res() 73 struct fsf_qtcb_prefix *q_pref = &req->qtcb->prefix; in zfcp_dbf_hba_fsf_res() 74 struct fsf_qtcb_header *q_head = &req->qtcb->header; in zfcp_dbf_hba_fsf_res() 83 rec->fsf_req_id = req->req_id; in zfcp_dbf_hba_fsf_res() 84 rec->fsf_req_status = req->status; in zfcp_dbf_hba_fsf_res() 87 rec->u.res.req_issued = req->issued; in zfcp_dbf_hba_fsf_res() 100 rec->pl_len, "fsf_res", req->req_id); in zfcp_dbf_hba_fsf_res() 110 * @req 115 zfcp_dbf_hba_fsf_fces(char *tag, const struct zfcp_fsf_req *req, u64 wwpn, u32 fc_security_old, u32 fc_security_new) zfcp_dbf_hba_fsf_fces() argument 195 zfcp_dbf_hba_fsf_uss(char *tag, struct zfcp_fsf_req *req) zfcp_dbf_hba_fsf_uss() argument 242 zfcp_dbf_hba_bit_err(char *tag, struct zfcp_fsf_req *req) zfcp_dbf_hba_bit_err() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_dp_mst_topology_internal.h | 16 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body *req, 19 struct drm_dp_sideband_msg_req_body *req); 21 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body *req,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/display/ |
H A D | drm_dp_mst_topology_internal.h | 16 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body *req, 19 struct drm_dp_sideband_msg_req_body *req); 21 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body *req,
|
/kernel/linux/linux-6.6/arch/arm64/include/asm/ |
H A D | assembler.h | 34 wx\n .req w\n 129 lr .req x30 // link register 521 .macro copy_page dest:req src:req t1:req t2:req t3:req t4:req t5:req t6:req t 680 .macro frame_push, regcount:req, extra global() variable 771 .macro cond_yield, lbl:req, tmp:req, tmp2:req global() variable [all...] |
/kernel/linux/linux-5.10/drivers/s390/block/ |
H A D | scm_blk.c | 147 static bool scm_permit_request(struct scm_blk_dev *bdev, struct request *req) in scm_permit_request() argument 149 return rq_data_dir(req) != WRITE || bdev->state != SCM_WR_PROHIBIT; in scm_permit_request() 186 struct request *req = scmrq->request[pos]; in scm_request_prepare() local 191 aidaw = scm_aidaw_fetch(scmrq, blk_rq_bytes(req)); in scm_request_prepare() 197 msb->scm_addr = scmdev->address + ((u64) blk_rq_pos(req) << 9); in scm_request_prepare() 198 msb->oc = (rq_data_dir(req) == READ) ? MSB_OC_READ : MSB_OC_WRITE; in scm_request_prepare() 202 rq_for_each_segment(bv, req, iter) { in scm_request_prepare() 214 struct request *req) in scm_request_set() 216 scmrq->request[scmrq->aob->request.msb_count] = req; in scm_request_set() 290 struct request *req in scm_blk_request() local 213 scm_request_set(struct scm_request *scmrq, struct request *req) scm_request_set() argument 419 scm_blk_request_done(struct request *req) scm_blk_request_done() argument [all...] |
/kernel/linux/linux-5.10/net/sctp/ |
H A D | diag.c | 121 const struct inet_diag_req_v2 *req, in inet_sctp_diag_fill() 131 int ext = req->idiag_ext; in inet_sctp_diag_fill() 251 const struct inet_diag_req_v2 *req = commp->r; in sctp_tsp_dump_one() local 257 err = sock_diag_check_cookie(sk, req->id.idiag_cookie); in sctp_tsp_dump_one() 272 err = inet_sctp_diag_fill(sk, assoc, rep, req, in sctp_tsp_dump_one() 427 const struct inet_diag_req_v2 *req) in sctp_diag_dump_one() 435 .r = req, in sctp_diag_dump_one() 440 if (req->sdiag_family == AF_INET) { in sctp_diag_dump_one() 441 laddr.v4.sin_port = req->id.idiag_sport; in sctp_diag_dump_one() 442 laddr.v4.sin_addr.s_addr = req in sctp_diag_dump_one() 119 inet_sctp_diag_fill(struct sock *sk, struct sctp_association *asoc, struct sk_buff *skb, const struct inet_diag_req_v2 *req, struct user_namespace *user_ns, int portid, u32 seq, u16 nlmsg_flags, const struct nlmsghdr *unlh, bool net_admin) inet_sctp_diag_fill() argument 426 sctp_diag_dump_one(struct netlink_callback *cb, const struct inet_diag_req_v2 *req) sctp_diag_dump_one() argument [all...] |