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

Builder libpcap-solaris11-sparc Build #119

Results:

Build successful

SourceStamp:

Projectlibpcap
Repositoryhttps://git.tcpdump.org/libpcap
Branchmaster
Revisionf7d89cb22f6cfe8bd6a5c475913eae637726d363
Got Revisionf7d89cb22f6cfe8bd6a5c475913eae637726d363
Changes3 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. shell './build_matrix.sh' ( 4 hrs, 33 mins, 37 secs )
    1. stdio
    2. config.log

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Denis Ovsienko

Timing:

StartSat Feb 7 00:07:58 2026
EndSat Feb 7 04:41:39 2026
Elapsed4 hrs, 33 mins, 41 secs

All Changes:

:

  1. Change #257126

    Category libpcap
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Fri 06 Feb 2026 23:59:21
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision 8189bd9d1e030b223215db0b34e1a9705ae101b9

    Comments

    DAG: Produce descriptions in a thread-safe manner.
    In the three functions that produce device/stream description strings do
    not return a static buffer, instead require the caller to provide their
    own buffer; in dag_findalldevs() make the buffer a local variable.

    Changed files

    • pcap-dag.c
  2. Change #257127

    Category libpcap
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Fri 06 Feb 2026 23:59:21
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision 8a86e0bba648f2c7cc4e08219f437ce253dd006c

    Comments

    Define all PCAP_ISxxxxx() macros in pcap-int.h.

    Changed files

    • pcap-int.h
    • rpcapd/fileconf.c
  3. Change #257128

    Category libpcap
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Fri 06 Feb 2026 23:59:21
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision f7d89cb22f6cfe8bd6a5c475913eae637726d363

    Comments

    DAG: Require dag_pciinfo() to succeed in dag_findalldevs().
    Eliminate a potential NULL dereference discovered by SeungJu Cheon (see
    GH #1611).
    
    It does not seem impossible that dag_pciinfo() can fail after dag_open()
    succeeded.  It didn't fail in my tests, but it is wrong to rely on that
    in dag_stream_long_description() since my commit 467c5e9 and in
    dag_findalldevs() since my commit 0cac013.  Thus do the same as is done
    in dag_activate_tx() and treat NULL as a hard failure.
    
    Now that the pointer to dag_card_inf_t is never NULL, lose the NULL
    coalescing props in dag_stream_long_description().  While at it, use
    PCAP_ISUPPER() to validate the card revision.

    Changed files

    • pcap-dag.c