From f4bda2157c4583dbd680069af83f8629450b60a0 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 11 Jan 2016 19:01:55 +0000 Subject: [PATCH] kernel: a couple of error numbers we'll need for networking --- Kernel/include/kernel.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Kernel/include/kernel.h b/Kernel/include/kernel.h index eb79c7f4..fb2513b3 100644 --- a/Kernel/include/kernel.h +++ b/Kernel/include/kernel.h @@ -572,7 +572,9 @@ struct s_argblk { #define EADDRINUSE 40 /* Address already in use */ #define EADDRNOTAVAIL 41 /* Address not available */ #define ENOSYS 42 /* No such system call */ - +#define EPFNOSUPPORT 43 /* Protocol not supported */ +#define EOPNOTSUPP 43 /* Operation not supported on transport + endpoint */ /* * ioctls for kernel internal operations start at 0x8000 and cannot be issued * by userspace. -- 2.34.1