Skip to content

Commit

Permalink
Updated copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoutoupis committed Jan 21, 2021
1 parent ec4f417 commit 880e30f
Show file tree
Hide file tree
Showing 29 changed files with 70 additions and 38 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Release 7.x ###
### Release 7.1.0 ###

- module: Updated for 5.9 kernels and later
- documentation: Updated copyrights

### Release 7.0.1 ###

Expand Down
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Copyright © 2016 - 2021 Petros Koutoupis
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-2.0-or-later

SUBDIRS = src conf doc module test

.PHONY: all
Expand Down
2 changes: 1 addition & 1 deletion conf/rapiddisk.sh.pacemaker
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (C) 2015-2020 Petros Koutoupis. All rights reserved.
# Copyright (C) 2015 - 2021 Petros Koutoupis. All rights reserved.
#

PATH=/bin:/sbin:/usr/bin:/usr/sbin
Expand Down
2 changes: 1 addition & 1 deletion conf/rapiddisk.sh.rgmanager
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (C) 2015 - 2020 Petros Koutoupis. All rights reserved.
# Copyright (C) 2015 - 2021 Petros Koutoupis. All rights reserved.
#

PATH=/bin:/sbin:/usr/bin:/usr/sbin
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
rapiddisk (7.1.0-1) released; urgency=medium

* module: Updated for 5.9 kernels and later
* documentation: Updated copyrights

rapiddisk (7.0.1-1) released; urgency=medium

* misc: Fixed typo in utility Makefile

rapiddisk (7.0.0-1) released; urgency=medium

* module: Updated for 5.8 kernels and later
* module: fixed cache status format typo
* daemon: Implement http-driven API to monitor/manage rapiddisk/cache functions
Expand All @@ -12,6 +18,7 @@ rapiddisk (7.0.0-1) released; urgency=medium
* misc: Code / documentation cleanup

rapiddisk (6.1-1) released; urgency=medium

* kernel: added support for 5.7 kernel
* utility: fixed GCC compilation warnings
* utility: code style cleanup
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: rapiddisk
Version: 7.0.1-1
Version: 7.1.0-1
Section: base
Priority: optional
Architecture: amd64
Expand Down
6 changes: 3 additions & 3 deletions debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ fi
case "$1" in

configure)
dkms add -m rapiddisk -v 7.0.1
dkms build -m rapiddisk -v 7.0.1
dkms install -m rapiddisk -v 7.0.1
dkms add -m rapiddisk -v 7.1.0
dkms build -m rapiddisk -v 7.1.0
dkms install -m rapiddisk -v 7.1.0
echo "rapiddisk max_sectors=2048 nr_requests=1024" >> /etc/modules
echo "rapiddisk-cache" >> /etc/modules
echo "dm_mod" >> /etc/modules
Expand Down
2 changes: 1 addition & 1 deletion debian/prerm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fi

case "$1" in
remove|upgrade|deconfigure)
dkms remove -m rapiddisk -v 6.0 --all
dkms remove -m rapiddisk -v 7.1.0 --all
;;

failed-upgrade)
Expand Down
4 changes: 2 additions & 2 deletions misc/rapiddisk-legacy/rapiddisk-legacy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ fi
## usage ##
function help_menu()
{
echo -e "$1 7.0.1"
echo -e "Copyright 2011 - 2020 Petros Koutoupis"
echo -e "$1 7.1.0"
echo -e "Copyright 2011 - 2021 Petros Koutoupis"
echo -e ""
echo -e "$1 is an administration tool to manage the RapidDisk RAM disk devices and"
echo -e "\tRapidDisk-Cache mappings."
Expand Down
4 changes: 2 additions & 2 deletions module/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2011-2020 Petros Koutoupis
# Copyright © 2011 - 2021 Petros Koutoupis
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
Expand All @@ -15,7 +15,7 @@
#
# SPDX-License-Identifier: GPL-2.0-only

VERSION = 7.0.1
VERSION = 7.1.0

ifeq ($(KSRC),)
KSRC := /lib/modules/$(shell uname -r)/build
Expand Down
2 changes: 1 addition & 1 deletion module/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="rapiddisk"
PACKAGE_VERSION="7.0.1"
PACKAGE_VERSION="7.1.0"
BUILT_MODULE_NAME[0]="rapiddisk"
BUILT_MODULE_NAME[1]="rapiddisk-cache"
DEST_MODULE_LOCATION[0]="/kernel/rapiddisk/"
Expand Down
8 changes: 4 additions & 4 deletions module/rapiddisk-cache.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -59,7 +59,7 @@
} \
} while (0)

#define VERSION_STR "7.0.1"
#define VERSION_STR "7.1.0"
#define DM_MSG_PREFIX "rapiddisk-cache"

#define READCACHE 1
Expand Down Expand Up @@ -1239,7 +1239,7 @@ cache_status(struct dm_target *ti, status_type_t type, unsigned status_flags,

static struct target_type cache_target = {
.name = "rapiddisk-cache",
.version = {7, 0, 1},
.version = {7, 1, 0},
.module = THIS_MODULE,
.ctr = cache_ctr,
.dtr = cache_dtr,
Expand Down Expand Up @@ -1281,4 +1281,4 @@ MODULE_LICENSE("GPL");
MODULE_AUTHOR("Petros Koutoupis <[email protected]>");
MODULE_DESCRIPTION("RapidDisk-Cache DM target is a write-through caching target with RapidDisk volumes.");
MODULE_VERSION(VERSION_STR);
MODULE_INFO(Copyright, "Copyright 2010 - 2020 Petros Koutoupis");
MODULE_INFO(Copyright, "Copyright 2010 - 2021 Petros Koutoupis");
6 changes: 3 additions & 3 deletions module/rapiddisk.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -41,7 +41,7 @@
#include <linux/radix-tree.h>
#include <linux/io.h>

#define VERSION_STR "7.0.0"
#define VERSION_STR "7.1.0"
#define PREFIX "rapiddisk"
#define BYTES_PER_SECTOR 512
#define MAX_RDSKS 128
Expand Down Expand Up @@ -882,4 +882,4 @@ MODULE_LICENSE("GPL");
MODULE_AUTHOR("Petros Koutoupis <[email protected]>");
MODULE_DESCRIPTION("RapidDisk is an enhanced RAM disk block device driver.");
MODULE_VERSION(VERSION_STR);
MODULE_INFO(Copyright, "Copyright 2010 - 2020 Petros Koutoupis");
MODULE_INFO(Copyright, "Copyright 2010 - 2021 Petros Koutoupis");
5 changes: 4 additions & 1 deletion rapiddisk.spec.rhel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: The RapidDisk software defined advanced RAM drive and storage caching solution.
Name: rapiddisk
Version: 7.0.1
Version: 7.1.0
Release: 1
License: General Public License Version 2
Group: Applications/System
Expand Down Expand Up @@ -78,6 +78,9 @@ rm -rf %{buildroot}
%doc %attr(0444,root,root) /usr/share/man/man1/*

%changelog
* Thu Jan 21 2021 Petros Koutoupis <[email protected]>
- module: Updated for 5.9 kernels and later
- documentation: Updated copyrights
* Sun Oct 18 2020 Petros Koutoupis <[email protected]>
- misc: Fixed typo in utility Makefile
* Sun Oct 11 2020 Petros Koutoupis <[email protected]>
Expand Down
5 changes: 4 additions & 1 deletion rapiddisk.spec.sles
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: The RapidDisk software defined advanced RAM drive and storage caching solution.
Name: rapiddisk
Version: 7.0.1
Version: 7.1.0
Release: 1
License: General Public License Version 2
Group: Applications/System
Expand Down Expand Up @@ -79,6 +79,9 @@ rm -rf %{buildroot}
%doc %attr(0444,root,root) /usr/share/man/man1/*

%changelog
* Thu Jan 21 2021 Petros Koutoupis <[email protected]>
- module: Updated for 5.9 kernels and later
- documentation: Updated copyrights
* Sun Oct 18 2020 Petros Koutoupis <[email protected]>
- misc: Fixed typo in utility Makefile
* Sun Oct 11 2020 Petros Koutoupis <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2011 - 2020 Petros Koutoupis
# Copyright © 2011 - 2021 Petros Koutoupis
# All rights reserved.
#
# This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/cli.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
6 changes: 3 additions & 3 deletions src/common.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down Expand Up @@ -43,8 +43,8 @@

#define PROCESS "rapiddisk"
#define DAEMON PROCESS "d"
#define COPYRIGHT "Copyright 2011 - 2020 Petros Koutoupis"
#define VERSION_NUM "7.0.1"
#define COPYRIGHT "Copyright 2011 - 2021 Petros Koutoupis"
#define VERSION_NUM "7.1.0"
#define SUCCESS 0
#define INVALID_VALUE -1
#define NAMELEN 0x200
Expand Down
2 changes: 1 addition & 1 deletion src/daemon.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/daemon.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/json.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/net.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/rdsk.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion src/sys.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************************
** Copyright © 2011 - 2020 Petros Koutoupis
** Copyright © 2011 - 2021 Petros Koutoupis
** All rights reserved.
**
** This file is part of RapidDisk.
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2016 - 2020 Petros Koutoupis
# Copyright © 2016 - 2021 Petros Koutoupis
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion test/rxflush.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* rxio.c */

/** Copyright © 2016 - 2020 Petros Koutoupis
/** Copyright © 2016 - 2021 Petros Koutoupis
** All rights reserved.
**
** This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion test/rxio.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* rxio.c */

/** Copyright © 2016 - 2020 Petros Koutoupis
/** Copyright © 2016 - 2021 Petros Koutoupis
** All rights reserved.
**
** This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion test/rxioctl.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* rxio.c */

/** Copyright © 2016 - 2020 Petros Koutoupis
/** Copyright © 2016 - 2021 Petros Koutoupis
** All rights reserved.
**
** This program is free software: you can redistribute it and/or modify
Expand Down

0 comments on commit 880e30f

Please sign in to comment.