Thanks to visit codestin.com
Credit goes to github.com

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: intel/tbtools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.0
Choose a base ref
...
head repository: intel/tbtools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.6.0
Choose a head ref
  • 16 commits
  • 11 files changed
  • 3 contributors

Commits on Feb 24, 2025

  1. trace: Handle task names with hyphens properly

    Turns out task names may have '-' in their name such as
    "pool-/usr/libex-3015" as reported by Naama.  Update parse_task() and
    parse_pid() regexes to handle this properly and add unit test so we can
    catch this.
    
    Reported-by: Naama Shachar <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Feb 24, 2025
    Configuration menu
    Copy the full SHA
    14066ba View commit details
    Browse the repository at this point in the history
  2. lib: Fix new clippy 'operator precedence can trip the unwary' warnings

    There is a new clippy warning when building with the latest Rust. Fix
    these.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Feb 24, 2025
    Configuration menu
    Copy the full SHA
    c4cf20b View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2025

  1. control: Add DP Config Changed ICM message

    Enable tracing of DP Configuration Changed message sent by firmware
    connection manager.
    
    Signed-off-by: Alan Borzeszkowski <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    aborzesz authored and westeri committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    4bc848b View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2025

  1. device/trace: Add JSON serialization support for Entry and the associ…

    …ated structures
    
    We are going to pass JSON representation of the trace entry data to the
    HTML generation JavaScript so take advantage of serde's facilities to
    get the Entry and the associated structures automatically serialized.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Mar 17, 2025
    Configuration menu
    Copy the full SHA
    b9f36ba View commit details
    Browse the repository at this point in the history
  2. tbtrace: Add support for HTML trace generation

    This adds tbtrace support for generating HTML reports by passing '--html'
    or '-H' parameter. This has full power of JavaScript so filtering etc.
    is quite simple. Currently only support filtering based on domain and
    route string but we may want to add more in the future.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Mar 17, 2025
    Configuration menu
    Copy the full SHA
    1a724b9 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2025

  1. tbtrace: Make the HTML report headers sticky

    This one makes it easier to see which column is which.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Mar 18, 2025
    Configuration menu
    Copy the full SHA
    6a72b14 View commit details
    Browse the repository at this point in the history
  2. tbtrace: Pass adapter number as String to details JSON

    This allows it to be extracted later with .as_str().
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Mar 18, 2025
    Configuration menu
    Copy the full SHA
    7f21564 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2025

  1. tbman: Update Adapter and Path views on device event

    Make Adapter and Path views in tbman refresh automatically whenever
    device event is detected. This way the user does not need to press F5
    everytime an event in the domain is detected to update the two views.
    
    Signed-off-by: Alan Borzeszkowski <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    aborzesz authored and westeri committed Mar 20, 2025
    Configuration menu
    Copy the full SHA
    844d748 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2025

  1. tbdump: Use unwrap_or_else() for error handling

    This makes it look better. No functional changes.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    8d914b5 View commit details
    Browse the repository at this point in the history
  2. monitor: Correct new clippy warning

    Latest clippy reported: "doc list item overindented". Fix this.
    
    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    530673e View commit details
    Browse the repository at this point in the history
  3. build(deps): bump crossbeam-channel from 0.5.13 to 0.5.15

    Bumps [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) from 0.5.13 to 0.5.15.
    - [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
    - [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
    - [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.13...crossbeam-channel-0.5.15)
    
    ---
    updated-dependencies:
    - dependency-name: crossbeam-channel
      dependency-version: 0.5.15
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Apr 10, 2025
    Configuration menu
    Copy the full SHA
    3c51718 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5 from intel/dependabot/cargo/crossbeam-channel-0…

    ….5.15
    
    build(deps): bump crossbeam-channel from 0.5.13 to 0.5.15
    westeri authored Apr 10, 2025
    Configuration menu
    Copy the full SHA
    361c4a3 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2025

  1. util: Add current_system_timestamp()

    This function provides current system timestamp as Timeval, counting
    since system boot time. Analogous to dmesg.
    
    Signed-off-by: Alan Borzeszkowski <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    aborzesz authored and westeri committed May 12, 2025
    Configuration menu
    Copy the full SHA
    29aba70 View commit details
    Browse the repository at this point in the history
  2. monitor: Add support for driver events

    Introduce uevent handler that retrieves additional uevent data from the
    kernel driver if present and makes it available for any callers through
    the monitor.
    
    Signed-off-by: Alan Borzeszkowski <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    aborzesz authored and westeri committed May 12, 2025
    Configuration menu
    Copy the full SHA
    02ae128 View commit details
    Browse the repository at this point in the history
  3. tbman: Add support for driver events

    Make tbman process received events from the driver and display their
    data in a new dialog with selectable entries, displayed as a list. This
    new dialog can be accessed by pressing 'F11'.
    
    Signed-off-by: Alan Borzeszkowski <[email protected]>
    Signed-off-by: Mika Westerberg <[email protected]>
    aborzesz authored and westeri committed May 12, 2025
    Configuration menu
    Copy the full SHA
    b3bfba6 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2025

  1. tbtools 0.6.0

    Signed-off-by: Mika Westerberg <[email protected]>
    westeri committed May 14, 2025
    Configuration menu
    Copy the full SHA
    b0c2664 View commit details
    Browse the repository at this point in the history
Loading