Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2025-07-10 Akira Hayakawa <ruby.wktk@gmail.com>

* v2.2.19
* Fix build error with 6.12 kernel
* Refactor
* Update copyright year

2024-11-12 Akira Hayakawa <ruby.wktk@gmail.com>

* v2.2.18
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MODULE_VERSION ?= 2.2.18
MODULE_VERSION ?= 2.2.19
DKMS_DIR := /usr/src/dm-writeboost-$(MODULE_VERSION)
DKMS_KEY := -m dm-writeboost -v $(MODULE_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Awarded by Japanese OSS Encouragement Award. Thanks!

## License
```
Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>

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
Expand Down
2 changes: 1 addition & 1 deletion src/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="dm-writeboost"
PACKAGE_VERSION="2.2.18"
PACKAGE_VERSION="2.2.19"

# dm-writeboost builds on top of dm features introduced in Linux 3.9
BUILD_EXCLUSIVE_KERNEL_MIN="3.9"
Expand Down
2 changes: 1 addition & 1 deletion src/dm-writeboost-daemon.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/dm-writeboost-daemon.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/dm-writeboost-metadata.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/dm-writeboost-metadata.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down
4 changes: 2 additions & 2 deletions src/dm-writeboost-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Log-structured Caching for Linux
*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down Expand Up @@ -1990,7 +1990,7 @@ static void writeboost_status(struct dm_target *ti, status_type_t type,

static struct target_type writeboost_target = {
.name = "writeboost",
.version = {2, 2, 18},
.version = {2, 2, 19},
.module = THIS_MODULE,
.map = writeboost_map,
.end_io = writeboost_end_io,
Expand Down
2 changes: 1 addition & 1 deletion src/dm-writeboost.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of dm-writeboost
* Copyright (C) 2012-2024 Akira Hayakawa <ruby.wktk@gmail.com>
* Copyright (C) 2012-2025 Akira Hayakawa <ruby.wktk@gmail.com>
*
* 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
Expand Down