Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opencomputeproject/SAI
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 58d95ce
Choose a base ref
...
head repository: opencomputeproject/SAI
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8429451
Choose a head ref
  • 16 commits
  • 21 files changed
  • 14 contributors

Commits on Aug 28, 2025

  1. Configuration menu
    Copy the full SHA
    5b9ae95 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2025

  1. Support for Next Hop Meta Data (#2181)

    Signed-off-by: Komal Shah <[email protected]>
    komal-marvell authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    000c6fe View commit details
    Browse the repository at this point in the history
  2. Add BFD and ICMP echo session to monitored objects list (#2193)

    Signed-off-by: Chikkegowda Chikkaiah <[email protected]>
    chikkaiah-work authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    4ba089f View commit details
    Browse the repository at this point in the history
  3. Fix bind point of tam (#2182)

    Signed-off-by: Ze Gan <[email protected]>
    Pterosaur authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    cec3156 View commit details
    Browse the repository at this point in the history
  4. Enable ICMP sessions on LAG port (#2194)

    fixes
    
    Signed-off-by: Chikkegowda Chikkaiah <[email protected]>
    chikkaiah-work authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    cbb76d3 View commit details
    Browse the repository at this point in the history
  5. SAI LPO attributes (#2178)

    Signed-off-by: pullarao <[email protected]>
    pullaraogunda authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    25579f3 View commit details
    Browse the repository at this point in the history
  6. Added port serdes attributes for various taps (#2207)

    Signed-off-by: Prince George <[email protected]>
    prgeor authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    9cfe262 View commit details
    Browse the repository at this point in the history
  7. Packet trimming: Add counter description (#2184)

    Signed-off-by: Running Huang <[email protected]>
    running-h authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    3360187 View commit details
    Browse the repository at this point in the history
  8. Create API for fast linkup configuration. (#2203)

    Signed-off-by: Martin Liao <[email protected]>
    Co-authored-by: Martin Liao <[email protected]>
    2 people authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    3a71308 View commit details
    Browse the repository at this point in the history
  9. meta/Makefile: use &: for grouped targets (#2200)

    The meta/Makefile contains several rules which are not correct
    for parallel make. These rules contain several targets to the
    left of the colon, and express the intent that the targets are
    built together as a group. Unfortunately, that's not what the
    syntax means:  Rather:
    
       t1 t2 t3 : prereq
               recipe # recipe generates all three!
    
    is essentially a syntactic sugar condensing multiple rules
    with the same recipe and prerequisites:
    
       t1 : prereq
               recipe # recipe generates all three!
    
       t2 : prereq
               recipe
    
       t3 : prereq
               recipe
    
    Under parallel make these rules fire in parallel which can
    wreak havoc, since they stomp on each other's files.
    
    The issue can be addressed using the grouped targets feature:
    
       t1 t2 t3 &: prereq
               recipe # recipe generates all three!
    
    The ampersand-colon separator &: means that there is only one
    rule here which Make understands to be updating all three
    targets.
    
    This feature has been available since GNU Make 4.2.90.
    Ubuntu-latest is on 4.3.
    
    (The grouped targets feature was the subject of a bugfix before
    4.4. The bug potentially causes a grouped target not to be
    remade if it is deleted.  This is minor problem because it's
    not expected that someone will be deleting, say, the generated
    file saimetadata.c individually rather than doing a "make clean"
    which deletes all the generated files.)
    
    Signed-off-by: Kaz Kylheku <[email protected]>
    kazinator-arista authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    935158d View commit details
    Browse the repository at this point in the history
  10. Add SAI_ATTR_PORT_FW_REVISION to saiport (#2197)

    This proposal outlines the addition of a new port attribute designed to provide a standardized method for querying the active firmware revision of a port.
    
    Proposal -
    
    Add label SAI_ATTR_PORT_FW_REVISION under sai_port_attr_h in saiport.h to store firmware related information. This attribute will store a string denoting the current firmware version running on the port. This can denote either the SerDes firmware version or any other vendor specific firmware version that needs to be exported.
    
    Signed-off-by: Tejas Pandey <[email protected]>
    pandeytejas authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    81fd462 View commit details
    Browse the repository at this point in the history
  11. Adding custom range base type for SAI_TAM_TEL_MATH_FUNC_TYPE (#2206)

    Signed-off-by: Dhruvkumar Patel <[email protected]>
    pdhruv-marvell authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    4467604 View commit details
    Browse the repository at this point in the history
  12. Added missing enable=True to acl_action_data_t in IPv6NextHdrTest (sa…

    …iacl module) (#2202)
    
    Signed-off-by: Kandankarunai Thiruppathi <[email protected]>
    kandancs authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    863494f View commit details
    Browse the repository at this point in the history
  13. Per Lane PRBS statuses and statistics (#2204)

    Signed-off-by: Spandan Dasgupta <[email protected]>
    sdasgupta-marvell authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    ff3595c View commit details
    Browse the repository at this point in the history
  14. Manually override HW switchover for planned operation (#2219)

    Signed-off-by: Chikkegowda Chikkaiah <[email protected]>
    chikkaiah-work authored and tjchadaga committed Oct 10, 2025
    Configuration menu
    Copy the full SHA
    7bf0632 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8429451 View commit details
    Browse the repository at this point in the history
Loading