Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder libpcap-solaris10-sparc Build #2901

Results:

Build successful

SourceStamp:

Projectlibpcap
Repositoryhttps://git.tcpdump.org/libpcap
Branchmaster
Revisionf56a6864e81bcd0dc510e5ad1f9be733fe574cd5
Got Revisionf56a6864e81bcd0dc510e5ad1f9be733fe574cd5
Changes1 change

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-libpcap-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 22 secs )
    1. stdio
  4. shell_2 './configure' ( 44 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 46 secs )
    1. stdio
  6. shell_4 'rm -rf ...' ( 0 secs )
    1. stdio
  7. shell_5 'gmake install ...' ( 2 secs )
    1. stdio
  8. trigger triggered trigger-tcpdump-solaris10-sparc ( 9 mins, 37 secs )
    1. - no logs -
    2. tcpdump-solaris10-sparc #5519

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/libpcap-solaris10-sparc slave
buildername libpcap-solaris10-sparc Builder
buildnumber 2901 Build
codebase Build
got_revision f56a6864e81bcd0dc510e5ad1f9be733fe574cd5 Git
project libpcap Build
repository https://git.tcpdump.org/libpcap Build
revision f56a6864e81bcd0dc510e5ad1f9be733fe574cd5 Build
scheduler schedule-libpcap-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/libpcap-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Oliver Hartkopp

Timing:

StartFri Apr 5 23:12:48 2024
EndFri Apr 5 23:24:25 2024
Elapsed11 mins, 37 secs

All Changes:

:

  1. Change #194625

    Category libpcap
    Changed by Oliver Hartkopp <socketcanohnoyoudont@hartkopp.net>
    Changed at Fri 05 Apr 2024 23:10:15
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision f56a6864e81bcd0dc510e5ad1f9be733fe574cd5

    Comments

    socketcan: make CAN CC/FD/XL frame handling less invasive
    The different CAN frame types are defined by Linux SLL_P types in the
    sll_protocol field and the length of the frame.
    
    LINUX_SLL_P_CANXL:
    The frame length for CAN XL can be 12 + 1 to 12 + 2048 (13 .. 2060) byte.
    Additionally the CANXL_XLF flag has to be set.
    
    LINUX_SLL_P_CAN and LINUX_SLL_P_CANFD:
    The frame length for CAN CC is 16 byte and for CAN FD it is 72 byte.
    Additionally the CANXL_XLF flag is cleared in CAN CC/FD frames.
    
    Reduce the modification and 'sanitizing' efforts only to the above
    requirements to be robust against incompliant content which might be
    provided via PACKET sockets but do not manipulate further content.
    
    This helps to identify uninitialized data and to support new features
    in formerly reserved structure elements without changing the libpcap.
    
    Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>

    Changed files

    • pcap-linux.c