Lines Matching refs:skb
31 static int crypto_report_aead(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_aead() argument
45 return nla_put(skb, CRYPTOCFGA_STAT_AEAD, sizeof(raead), &raead); in crypto_report_aead()
48 static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_cipher() argument
62 return nla_put(skb, CRYPTOCFGA_STAT_CIPHER, sizeof(rcipher), &rcipher); in crypto_report_cipher()
65 static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_comp() argument
78 return nla_put(skb, CRYPTOCFGA_STAT_COMPRESS, sizeof(rcomp), &rcomp); in crypto_report_comp()
81 static int crypto_report_acomp(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_acomp() argument
94 return nla_put(skb, CRYPTOCFGA_STAT_ACOMP, sizeof(racomp), &racomp); in crypto_report_acomp()
97 static int crypto_report_akcipher(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_akcipher() argument
112 return nla_put(skb, CRYPTOCFGA_STAT_AKCIPHER, in crypto_report_akcipher()
116 static int crypto_report_kpp(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_kpp() argument
129 return nla_put(skb, CRYPTOCFGA_STAT_KPP, sizeof(rkpp), &rkpp); in crypto_report_kpp()
132 static int crypto_report_ahash(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_ahash() argument
144 return nla_put(skb, CRYPTOCFGA_STAT_HASH, sizeof(rhash), &rhash); in crypto_report_ahash()
147 static int crypto_report_shash(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_shash() argument
159 return nla_put(skb, CRYPTOCFGA_STAT_HASH, sizeof(rhash), &rhash); in crypto_report_shash()
162 static int crypto_report_rng(struct sk_buff *skb, struct crypto_alg *alg) in crypto_report_rng() argument
175 return nla_put(skb, CRYPTOCFGA_STAT_RNG, sizeof(rrng), &rrng); in crypto_report_rng()
180 struct sk_buff *skb) in crypto_reportstat_one() argument
195 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority)) in crypto_reportstat_one()
202 if (nla_put(skb, CRYPTOCFGA_STAT_LARVAL, sizeof(rl), &rl)) in crypto_reportstat_one()
209 if (crypto_report_aead(skb, alg)) in crypto_reportstat_one()
213 if (crypto_report_cipher(skb, alg)) in crypto_reportstat_one()
217 if (crypto_report_cipher(skb, alg)) in crypto_reportstat_one()
221 if (crypto_report_comp(skb, alg)) in crypto_reportstat_one()
225 if (crypto_report_acomp(skb, alg)) in crypto_reportstat_one()
229 if (crypto_report_acomp(skb, alg)) in crypto_reportstat_one()
233 if (crypto_report_akcipher(skb, alg)) in crypto_reportstat_one()
237 if (crypto_report_kpp(skb, alg)) in crypto_reportstat_one()
241 if (crypto_report_ahash(skb, alg)) in crypto_reportstat_one()
245 if (crypto_report_shash(skb, alg)) in crypto_reportstat_one()
249 if (crypto_report_rng(skb, alg)) in crypto_reportstat_one()
269 struct sk_buff *skb = info->out_skb; in crypto_reportstat_alg() local
274 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq, in crypto_reportstat_alg()
283 err = crypto_reportstat_one(alg, ualg, skb); in crypto_reportstat_alg()
285 nlmsg_cancel(skb, nlh); in crypto_reportstat_alg()
289 nlmsg_end(skb, nlh); in crypto_reportstat_alg()
301 struct sk_buff *skb; in crypto_reportstat() local
313 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); in crypto_reportstat()
314 if (!skb) in crypto_reportstat()
318 info.out_skb = skb; in crypto_reportstat()
328 kfree_skb(skb); in crypto_reportstat()
332 return nlmsg_unicast(net->crypto_nlsk, skb, NETLINK_CB(in_skb).portid); in crypto_reportstat()