{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #2560 of commit 5e40419ae0f255c6a75aa70955b917a9ceb92941, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/2560/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "5e40419ae0f255c6a75aa70955b917a9ceb92941"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : "Yonghong Song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : "yhs@fb.com"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/iovisor/bcc.git"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLogin",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLoginMention",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullId",
          "value" : "2560"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "yhs_dev"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "yhs_dev"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #2560 of commit 5e40419ae0f255c6a75aa70955b917a9ceb92941, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "assign offset properly for btf DataSec"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/2560"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "The following test case failed:\\r\\n```\\r\\n  -bash-4.4$ cat test.py\\r\\n  #!/usr/bin/python\\r\\n  from bcc import BPF\\r\\n  prog=\\\"\\\"\\\"\\r\\n  BPF_ARRAY(array1, u64, 1);\\r\\n  BPF_ARRAY(array2, u64, 1);\\r\\n  \\\"\\\"\\\"\\r\\n  b=BPF(text=prog, debug=0x20)\\r\\n  -bash-4.4$ sudo ./test.py\\r\\n  libbpf: Error loading BTF: Invalid argument(22)\\r\\n  libbpf: magic: 0xeb9f\\r\\n  version: 1\\r\\n  flags: 0x0\\r\\n  hdr_len: 24\\r\\n  ...\\r\\n  [57] DATASEC array size=176 vlen=2\\r\\n           type_id=47 offset=0 size=88\\r\\n           type_id=49 offset=0 size=88 Invalid offset\\r\\n\\r\\n  Loading .BTF section failed\\r\\n  -bash-4.4$\\r\\n```\\r\\nThe reason is the data offset in DataSec VarInfo\\r\\n(e.g., type_id=47 offset=0 size=88) always have\\r\\noffset=0 since JIT won't do a final relocation\\r\\nfor the record. Assign offset properly\\r\\nin bcc_btf before loading btf to the kernel.\\r\\nWith this patch, test case can load btf properly.\\r\\n```\\r\\n  -bash-4.4$ cat test.py\\r\\n  #!/usr/bin/python\\r\\n  from bcc import BPF\\r\\n  prog=\\\"\\\"\\\"\\r\\n  BPF_ARRAY(array1, u64, 1);\\r\\n  BPF_ARRAY(array2, u64, 1);\\r\\n  \\\"\\\"\\\"\\r\\n  b=BPF(text=prog, debug=0x20)\\r\\n  -bash-4.4$ sudo ./test.py\\r\\n  -bash-4.4$\\r\\n```\\r\\nSigned-off-by: Yonghong Song <yhs@fb.com>"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCommentBody",
          "value" : "null"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbGhRepository",
          "value" : "iovisor/bcc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCredentialsId",
          "value" : "6d3daf13-69b8-48b1-9c8f-ec5353264113"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : "<a title=\"assign offset properly for btf DataSec\" href=\"https://github.com/iovisor/bcc/pull/2560\">PR #2560</a>: assign offset properly for ...",
  "displayName" : "#93",
  "duration" : 1165630,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #93",
  "id" : "93",
  "keepLog" : False,
  "number" : 93,
  "queueId" : 772,
  "result" : "SUCCESS",
  "timestamp" : 1571508757293,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/93/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/93/"
    },
    {
      "number" : 93,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/93/"
    }
  ]
}