]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
uapi: update kernel headers 6.4-rc1
authorStephen Hemminger <stephen@networkplumber.org>
Mon, 8 May 2023 20:41:31 +0000 (13:41 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 8 May 2023 20:41:31 +0000 (13:41 -0700)
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
include/uapi/linux/atmdev.h
include/uapi/linux/const.h
include/uapi/linux/virtio_config.h

index 9bdb96a4bbe04fc68f1c9d6604b47b4d0f61fefc..c95786e949af87263bc455c5476449f08f2f346d 100644 (file)
@@ -101,10 +101,6 @@ struct atm_dev_stats {
                                        /* use backend to make new if */
 #define ATM_ADDPARTY   _IOW('a', ATMIOC_SPECIAL+4,struct atm_iobuf)
                                        /* add party to p2mp call */
-#ifdef CONFIG_COMPAT
-/* It actually takes struct sockaddr_atmsvc, not struct atm_iobuf */
-#define COMPAT_ATM_ADDPARTY    _IOW('a', ATMIOC_SPECIAL+4,struct compat_atm_iobuf)
-#endif
 #define ATM_DROPPARTY  _IOW('a', ATMIOC_SPECIAL+5,int)
                                        /* drop party from p2mp call */
 
index 5e489872516827f195db45746660b9ed7d1f4870..1eb84b5087f8a1d1c1c8f44b5fcc246e04a5a76e 100644 (file)
@@ -28,7 +28,7 @@
 #define _BITUL(x)      (_UL(1) << (x))
 #define _BITULL(x)     (_ULL(1) << (x))
 
-#define __ALIGN_KERNEL(x, a)           __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
+#define __ALIGN_KERNEL(x, a)           __ALIGN_KERNEL_MASK(x, (__typeof__(x))(a) - 1)
 #define __ALIGN_KERNEL_MASK(x, mask)   (((x) + (mask)) & ~(mask))
 
 #define __KERNEL_DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
index f010cc42a469e5eabc347ac1592abbbd6ea42cc4..94a30195428f8864ff66a2963b862c3e418d152f 100644 (file)
  */
 #define VIRTIO_F_SR_IOV                        37
 
+/*
+ * This feature indicates that the driver passes extra data (besides
+ * identifying the virtqueue) in its device notifications.
+ */
+#define VIRTIO_F_NOTIFICATION_DATA     38
+
 /*
  * This feature indicates that the driver can reset a queue individually.
  */