Skip to content

Commit

Permalink
update patch version.
Browse files Browse the repository at this point in the history
  • Loading branch information
shankarseal committed Mar 22, 2024
1 parent d793e61 commit 419dcdf
Show file tree
Hide file tree
Showing 146 changed files with 3,386 additions and 3,560 deletions.
2 changes: 1 addition & 1 deletion installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SPDX-License-Identifier: MIT
<?define ProductVersion="022C44B5-8969-4B75-8DB0-73F98B1BD7DC"?>
<?define UpgradeCode="B6BCACB1-C872-4159-ABCB-43A50668056C"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:ui="http://schemas.microsoft.com/wix/UIExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.14.1" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.14.2" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Package Description="eBPF for Windows" InstallerVersion="301" Compressed="yes" InstallScope="perMachine" Manufacturer="Microsoft" Platform="x64" />
<MajorUpgrade AllowSameVersionUpgrades="yes"
Disallow="yes" DisallowUpgradeErrorMessage="An older version of [ProductName] is already installed. Please remove it first."
Expand Down
2 changes: 1 addition & 1 deletion resource/ebpf_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#define EBPF_VERSION_MAJOR 0
#define EBPF_VERSION_MINOR 14
#define EBPF_VERSION_REVISION 1
#define EBPF_VERSION_REVISION 2

#define QUOTE(str) #str
#define EXPAND_AND_QUOTE(str) QUOTE(str)
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/atomic_instruction_fetch_add_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ func(void* context)
if ((func_helpers[0].tail_call) && (r0 == 0))
#line 28 "sample/undocked/atomic_instruction_fetch_add.c"
return 0;
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
if (r0 == IMMEDIATE(0))
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
r1 = IMMEDIATE(1);
// EBPF_OP_ATOMIC64_ADD pc=9 dst=r0 src=r1 offset=0 imm=0
Expand Down Expand Up @@ -179,7 +179,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/atomic_instruction_fetch_add_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ func(void* context)
if ((func_helpers[0].tail_call) && (r0 == 0))
#line 28 "sample/undocked/atomic_instruction_fetch_add.c"
return 0;
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
if (r0 == IMMEDIATE(0))
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
r1 = IMMEDIATE(1);
// EBPF_OP_ATOMIC64_ADD pc=9 dst=r0 src=r1 offset=0 imm=0
Expand Down Expand Up @@ -153,7 +153,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/atomic_instruction_fetch_add_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@ func(void* context)
if ((func_helpers[0].tail_call) && (r0 == 0))
#line 28 "sample/undocked/atomic_instruction_fetch_add.c"
return 0;
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
// EBPF_OP_JEQ_IMM pc=7 dst=r0 src=r0 offset=2 imm=0
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
if (r0 == IMMEDIATE(0))
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
// EBPF_OP_MOV64_IMM pc=8 dst=r1 src=r0 offset=0 imm=1
#line 29 "sample/undocked/atomic_instruction_fetch_add.c"
r1 = IMMEDIATE(1);
// EBPF_OP_ATOMIC64_ADD pc=9 dst=r0 src=r1 offset=0 imm=0
Expand Down Expand Up @@ -314,7 +314,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/bad_map_name_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ lookup(void* context)
if ((lookup_helpers[0].tail_call) && (r0 == 0))
#line 29 "sample/undocked/bad_map_name.c"
return 0;
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
#line 29 "sample/undocked/bad_map_name.c"
r1 = r0;
// EBPF_OP_MOV64_IMM pc=8 dst=r0 src=r0 offset=0 imm=1
Expand All @@ -136,7 +136,7 @@ lookup(void* context)
if (r1 == IMMEDIATE(0))
#line 30 "sample/undocked/bad_map_name.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
#line 30 "sample/undocked/bad_map_name.c"
r0 = IMMEDIATE(0);
label_1:
Expand Down Expand Up @@ -179,7 +179,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/bad_map_name_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ lookup(void* context)
if ((lookup_helpers[0].tail_call) && (r0 == 0))
#line 29 "sample/undocked/bad_map_name.c"
return 0;
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
#line 29 "sample/undocked/bad_map_name.c"
r1 = r0;
// EBPF_OP_MOV64_IMM pc=8 dst=r0 src=r0 offset=0 imm=1
Expand All @@ -110,7 +110,7 @@ lookup(void* context)
if (r1 == IMMEDIATE(0))
#line 30 "sample/undocked/bad_map_name.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
#line 30 "sample/undocked/bad_map_name.c"
r0 = IMMEDIATE(0);
label_1:
Expand Down Expand Up @@ -153,7 +153,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
6 changes: 3 additions & 3 deletions tests/bpf2c_tests/expected/bad_map_name_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ lookup(void* context)
if ((lookup_helpers[0].tail_call) && (r0 == 0))
#line 29 "sample/undocked/bad_map_name.c"
return 0;
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_REG pc=7 dst=r1 src=r0 offset=0 imm=0
#line 29 "sample/undocked/bad_map_name.c"
r1 = r0;
// EBPF_OP_MOV64_IMM pc=8 dst=r0 src=r0 offset=0 imm=1
Expand All @@ -271,7 +271,7 @@ lookup(void* context)
if (r1 == IMMEDIATE(0))
#line 30 "sample/undocked/bad_map_name.c"
goto label_1;
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
// EBPF_OP_MOV64_IMM pc=10 dst=r0 src=r0 offset=0 imm=0
#line 30 "sample/undocked/bad_map_name.c"
r0 = IMMEDIATE(0);
label_1:
Expand Down Expand Up @@ -314,7 +314,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 14;
version->revision = 1;
version->revision = 2;
}

static void
Expand Down
Loading

0 comments on commit 419dcdf

Please sign in to comment.