Lines Matching defs:error
136 #error 8 must be a multiple of PPPOE_HASH_BITS
618 int error;
622 error = -EINVAL;
631 error = -EBUSY;
637 error = -EALREADY;
642 error = 0;
667 error = -ENODEV;
685 error = __set_item(pn, po);
687 if (error < 0)
697 error = ppp_register_net_channel(dev_net(dev), &po->chan);
698 if (error) {
711 return error;
842 int error;
851 error = -ENOTCONN;
862 error = -EMSGSIZE;
870 error = -ENOMEM;
886 error = memcpy_from_msg(start, m, total_len);
887 if (error < 0) {
892 error = total_len;
904 return error;
1008 int error = 0;
1011 error = -EIO;
1015 skb = skb_recv_datagram(sk, flags, &error);
1016 if (error < 0)
1021 error = skb_copy_datagram_msg(skb, 0, m, total_len);
1022 if (error == 0) {
1030 return error;