-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec4f417
commit 880e30f
Showing
29 changed files
with
70 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|
@@ -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, | ||
|
@@ -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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|
@@ -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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters