Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a68d01ca authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Wifi: Change the type from long to int for contention time statistics"...

Merge "Wifi: Change the type from long to int for contention time statistics" into sc-dev am: 4f8dbd55

Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/13696182

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I032632fafc8a67d61a39a202c5251e51aed95419
parents af4c0e8d 4f8dbd55
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -142,23 +142,23 @@ struct StaLinkLayerIfaceContentionTimeStats {
     * Data packet min contention time (usec).  It includes both the internal contention time
     * among different access categories within the chipset and the contention time for the medium.
     */
    uint64_t contentionTimeMinInUsec;
    uint32_t contentionTimeMinInUsec;

    /**
     * Data packet max contention time (usec).  It includes both the internal contention time
     * among different access categories within the chipset and the contention time for the medium.
     */
    uint64_t contentionTimeMaxInUsec;
    uint32_t contentionTimeMaxInUsec;
    /**
     * Data packet average contention time (usec).  It includes both the internal contention time
     * among different access categories within the chipset and the contention time for the medium.
     */
    uint64_t contentionTimeAvgInUsec;
    uint32_t contentionTimeAvgInUsec;

    /**
     * Number of data packets used for contention statistics.
     */
    uint64_t contentionNumSamples;
    uint32_t contentionNumSamples;
};

/**