Patch "taprio: do not use BIT() in TCA_TAPRIO_ATTR_FLAG_* definitions" has been added to the 5.4-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    taprio: do not use BIT() in TCA_TAPRIO_ATTR_FLAG_* definitions

to the 5.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     taprio-do-not-use-bit-in-tca_taprio_attr_flag_-defin.patch
and it can be found in the queue-5.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 08a3a1f643bc40958cd6d97d2acb4e0f41c5f8ff
Author: Eugene Syromiatnikov <esyr@xxxxxxxxxx>
Date:   Tue Mar 24 05:19:20 2020 +0100

    taprio: do not use BIT() in TCA_TAPRIO_ATTR_FLAG_* definitions
    
    commit 673040c3a82a7564423e09c791e242a846591e30 upstream.
    
    BIT() macro definition is internal to the Linux kernel and is not
    to be used in UAPI headers; replace its usage with the _BITUL() macro
    that is already used elsewhere in the header.
    
    Fixes: 9c66d1564676 ("taprio: Add support for hardware offloading")
    Signed-off-by: Eugene Syromiatnikov <esyr@xxxxxxxxxx>
    Acked-by: Vladimir Oltean <vladimir.oltean@xxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>

diff --git a/include/uapi/linux/pkt_sched.h b/include/uapi/linux/pkt_sched.h
index 5011259b8f67a..edbbf4bfdd9e5 100644
--- a/include/uapi/linux/pkt_sched.h
+++ b/include/uapi/linux/pkt_sched.h
@@ -1160,8 +1160,8 @@ enum {
  *       [TCA_TAPRIO_ATTR_SCHED_ENTRY_INTERVAL]
  */
 
-#define TCA_TAPRIO_ATTR_FLAG_TXTIME_ASSIST	BIT(0)
-#define TCA_TAPRIO_ATTR_FLAG_FULL_OFFLOAD	BIT(1)
+#define TCA_TAPRIO_ATTR_FLAG_TXTIME_ASSIST	_BITUL(0)
+#define TCA_TAPRIO_ATTR_FLAG_FULL_OFFLOAD	_BITUL(1)
 
 enum {
 	TCA_TAPRIO_ATTR_UNSPEC,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux