Lines Matching refs:uparams
118 struct keyctl_pkey_params uparams; in keyctl_pkey_params_get_2() local
125 if (copy_from_user(&uparams, _params, sizeof(uparams)) != 0) in keyctl_pkey_params_get_2()
128 ret = keyctl_pkey_params_get(uparams.key_id, _info, params); in keyctl_pkey_params_get_2()
138 if (uparams.in_len > info.max_dec_size || in keyctl_pkey_params_get_2()
139 uparams.out_len > info.max_enc_size) in keyctl_pkey_params_get_2()
143 if (uparams.in_len > info.max_enc_size || in keyctl_pkey_params_get_2()
144 uparams.out_len > info.max_dec_size) in keyctl_pkey_params_get_2()
148 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
149 uparams.out_len > info.max_sig_size) in keyctl_pkey_params_get_2()
153 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
154 uparams.in2_len > info.max_sig_size) in keyctl_pkey_params_get_2()
161 params->in_len = uparams.in_len; in keyctl_pkey_params_get_2()
162 params->out_len = uparams.out_len; /* Note: same as in2_len */ in keyctl_pkey_params_get_2()