Skip to content

Commit 5c7de01

Browse files
committed
Consistent look and feel of licenses
Signed-off-by: Madelyn Olson <[email protected]>
1 parent 54c4bbc commit 5c7de01

33 files changed

+24042
-37
lines changed

COPYING

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# License 1
22

3+
SPDX-License-Identifier: BSD-3-Clause
4+
35
BSD 3-Clause License
46

57
Copyright (c) 2024-present, Valkey contributors

deps/fast_float_c_interface/fast_float_strtod.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Copyright Valkey Contributors.
2+
* Copyright (c) Valkey Contributors
33
* All rights reserved.
4-
* SPDX-License-Identifier: BSD 3-Clause
4+
* SPDX-License-Identifier: BSD-3-Clause
55
*/
66

77
#include "../fast_float/fast_float.h"

src/allocator_defrag.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/* Copyright 2024- Valkey contributors
1+
/*
2+
* Copyright (c) Valkey Contributors
23
* All rights reserved.
34
* SPDX-License-Identifier: BSD-3-Clause
45
*/
5-
66
/*
77
* This file implements allocator-specific defragmentation logic used
88
* within the Valkey engine. Below is the relationship between various

src/asciilogo.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* Copyright (c) 2009-2012, Redis Ltd.
3-
* Copyright (c) 2024, Valkey contributors
43
* All rights reserved.
54
*
65
* Redistribution and use in source and binary forms, with or without
@@ -27,7 +26,11 @@
2726
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2827
* POSSIBILITY OF SUCH DAMAGE.
2928
*/
30-
29+
/*
30+
* Copyright (c) Valkey Contributors
31+
* All rights reserved.
32+
* SPDX-License-Identifier: BSD-3-Clause
33+
*/
3134
const char *ascii_logo =
3235
" .+^+. \n"
3336
" .+#########+. \n"

src/blocked.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@
2626
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2727
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828
* POSSIBILITY OF SUCH DAMAGE.
29-
*
30-
* ---------------------------------------------------------------------------
31-
*
29+
*/
30+
/*
31+
* Copyright (c) Valkey Contributors
32+
* All rights reserved.
33+
* SPDX-License-Identifier: BSD-3-Clause
34+
*/
35+
/*
3236
* API:
3337
*
3438
* blockClient() set the CLIENT_BLOCKED flag in the client, and set the

src/cluster.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727
* POSSIBILITY OF SUCH DAMAGE.
2828
*/
29-
29+
/*
30+
* Copyright (c) Valkey Contributors
31+
* All rights reserved.
32+
* SPDX-License-Identifier: BSD-3-Clause
33+
*/
3034
/*
3135
* cluster.c contains the common parts of a clustering
3236
* implementation, the parts that are shared between

src/cluster_legacy.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727
* POSSIBILITY OF SUCH DAMAGE.
2828
*/
29-
29+
/*
30+
* Copyright (c) Valkey Contributors
31+
* All rights reserved.
32+
* SPDX-License-Identifier: BSD-3-Clause
33+
*/
3034
/*
3135
* cluster_legacy.c contains the implementation of the cluster API that is
3236
* specific to the standard, cluster-bus based clustering mechanism.

src/cluster_slot_stats.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright Valkey Contributors.
2+
* Copyright (c) Valkey Contributors
33
* All rights reserved.
4-
* SPDX-License-Identifier: BSD 3-Clause
4+
* SPDX-License-Identifier: BSD-3-Clause
55
*/
6-
76
#include "cluster_slot_stats.h"
87

98
#define UNASSIGNED_SLOT 0

src/commandlog.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Copyright (c) Valkey Contributors
3+
* All rights reserved.
4+
* SPDX-License-Identifier: BSD-3-Clause
5+
*/
6+
17
/* Commandlog implements a system that is able to remember the latest N
28
* queries that took more than M microseconds to execute, or consumed
39
* too much network bandwidth and memory for input/output buffers.
@@ -14,10 +20,6 @@
1420
* but is accessible thanks to the COMMANDLOG command.
1521
*
1622
* ----------------------------------------------------------------------------
17-
*
18-
* Copyright Valkey Contributors.
19-
* All rights reserved.
20-
* SPDX-License-Identifier: BSD 3-Clause
2123
*/
2224

2325
#include "commandlog.h"

src/commands/commands

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../valkey/src/commands

0 commit comments

Comments
 (0)