Skip to content

Commit

Permalink
Add SPDX license identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
dswarbrick committed Jun 26, 2020
1 parent 6fe4770 commit b961b40
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Package config handles the configuration parsing for FabricMon.
package config
Expand Down
2 changes: 1 addition & 1 deletion infiniband/bitops.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Low-level bit operations.

Expand Down
2 changes: 1 addition & 1 deletion infiniband/bitops_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Low-level bit operations.

Expand Down
2 changes: 1 addition & 1 deletion infiniband/ibumad.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Functions analogous to libibumad.
// Note: When running in an ibsim environment, the libumad2sim.so LD_PRELOAD hijacks libc syscall
Expand Down
2 changes: 1 addition & 1 deletion infiniband/infiniband.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later
//
// TODO: Implement user-friendly display of link rate (see ib_types.h).

Expand Down
2 changes: 1 addition & 1 deletion infiniband/netdiscover.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

package infiniband

Expand Down
2 changes: 1 addition & 1 deletion infiniband/nodenamemap.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Go implementation of InfiniBand node name map lookup functions.

Expand Down
2 changes: 1 addition & 1 deletion infiniband/nodenamemap_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

package infiniband

Expand Down
2 changes: 1 addition & 1 deletion infiniband/sm.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Subnet manager functions.

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// cgo wrapper around libibumad / libibnetdiscover.
// Note: Due to the usual permissions on /dev/infiniband/umad*, this will probably need to be
Expand Down
2 changes: 1 addition & 1 deletion version/info.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

package version

Expand Down
2 changes: 1 addition & 1 deletion writer/forcegraph/forcegraph.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Package forecegraph implements the ForceGraphWriter, which writes the fabric topology to a JSON
// file suitable for use by the d3.js force graph functions.
Expand Down
2 changes: 1 addition & 1 deletion writer/influxdb/influxdb.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Package influxdb implements the InfluxDBWriter, which writes InfiniBand performance counters to
// one or more configured InfluxDB backends.
Expand Down
2 changes: 1 addition & 1 deletion writer/writer.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2017-20 Daniel Swarbrick. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
// SPDX-License-Identifier: GPL-3.0-or-later

// Package writer defines the FabricWriter interface type, which all FabricMon writers must
// implement in order to receive fabric topologies and counters. What each writer does with that
Expand Down

0 comments on commit b961b40

Please sign in to comment.