-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 162551 b: refs/heads/master c: a3b2e09 h: refs/heads/master i: 162549: 6b066f8 162547: 48ed2c4 162543: 44ddf41 v: v3
- Loading branch information
Greg Kroah-Hartman
committed
Sep 15, 2009
1 parent
937fe57
commit 6f7e5cc
Showing
5 changed files
with
21 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5cc06df69f0865750ed5c95e3d930be31b7c861e | ||
refs/heads/master: a3b2e09333ce811e69ac71379a2dd8ccd1b2ca6f |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
config COWLOOP | ||
tristate "copy-on-write pseudo Block Driver" | ||
depends on BLOCK | ||
default n | ||
---help--- | ||
Cowloop is a "copy-on-write" pseudo block driver. It can be | ||
stacked on top of a "real" block driver, and catches all write | ||
operations on their way from the file systems layer above to | ||
the real driver below, effectively shielding the lower driver | ||
from those write accesses. The requests are then diverted to | ||
an ordinary file, located somewhere else (configurable). Later | ||
read requests are checked to see whether they can be serviced | ||
by the "real" block driver below, or must be pulled in from | ||
the diverted location. More information and userspace tools to | ||
use the driver are on the project's website | ||
http://www.ATComputing.nl/cowloop/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_COWLOOP) += cowloop.o |