txopts            786 net/ipv6/calipso.c 	struct ipv6_txoptions *old = txopt_get(inet6_sk(sk)), *txopts;
txopts            788 net/ipv6/calipso.c 	txopts = ipv6_renew_options(sk, old, IPV6_HOPOPTS, hop);
txopts            790 net/ipv6/calipso.c 	if (IS_ERR(txopts))
txopts            791 net/ipv6/calipso.c 		return PTR_ERR(txopts);
txopts            793 net/ipv6/calipso.c 	txopts = ipv6_update_options(sk, txopts);
txopts            794 net/ipv6/calipso.c 	if (txopts) {
txopts            795 net/ipv6/calipso.c 		atomic_sub(txopts->tot_len, &sk->sk_omem_alloc);
txopts            796 net/ipv6/calipso.c 		txopt_put(txopts);
txopts           1082 net/ipv6/calipso.c 	struct ipv6_txoptions *txopts = txopt_get(inet6_sk(sk));
txopts           1084 net/ipv6/calipso.c 	if (!txopts || !txopts->hopopt)
txopts           1087 net/ipv6/calipso.c 	hop = txopts->hopopt;
txopts           1111 net/ipv6/calipso.c 	txopt_put(txopts);
txopts           1135 net/ipv6/calipso.c 	struct ipv6_txoptions *txopts = txopt_get(inet6_sk(sk));
txopts           1138 net/ipv6/calipso.c 	if (txopts)
txopts           1139 net/ipv6/calipso.c 		old = txopts->hopopt;
txopts           1142 net/ipv6/calipso.c 	txopt_put(txopts);
txopts           1163 net/ipv6/calipso.c 	struct ipv6_txoptions *txopts = txopt_get(inet6_sk(sk));
txopts           1165 net/ipv6/calipso.c 	if (!txopts || !txopts->hopopt)
txopts           1168 net/ipv6/calipso.c 	if (calipso_opt_del(txopts->hopopt, &new_hop))
txopts           1175 net/ipv6/calipso.c 	txopt_put(txopts);
txopts           1197 net/ipv6/calipso.c 	struct ipv6_txoptions *txopts;
txopts           1211 net/ipv6/calipso.c 	txopts = ipv6_renew_options(sk, req_inet->ipv6_opt, IPV6_HOPOPTS, new);
txopts           1215 net/ipv6/calipso.c 	if (IS_ERR(txopts))
txopts           1216 net/ipv6/calipso.c 		return PTR_ERR(txopts);
txopts           1218 net/ipv6/calipso.c 	txopts = xchg(&req_inet->ipv6_opt, txopts);
txopts           1219 net/ipv6/calipso.c 	if (txopts) {
txopts           1220 net/ipv6/calipso.c 		atomic_sub(txopts->tot_len, &sk->sk_omem_alloc);
txopts           1221 net/ipv6/calipso.c 		txopt_put(txopts);
txopts           1239 net/ipv6/calipso.c 	struct ipv6_txoptions *txopts;
txopts           1248 net/ipv6/calipso.c 	txopts = ipv6_renew_options(sk, req_inet->ipv6_opt, IPV6_HOPOPTS, new);
txopts           1250 net/ipv6/calipso.c 	if (!IS_ERR(txopts)) {
txopts           1251 net/ipv6/calipso.c 		txopts = xchg(&req_inet->ipv6_opt, txopts);
txopts           1252 net/ipv6/calipso.c 		if (txopts) {
txopts           1253 net/ipv6/calipso.c 			atomic_sub(txopts->tot_len, &sk->sk_omem_alloc);
txopts           1254 net/ipv6/calipso.c 			txopt_put(txopts);