Edward Tomasz Napierala
7027e4dac4
Add trivial resize handling to gnop(8).
...
Reviewed by: mav
Sponsored by: FreeBSD Foundation
2012-07-07 22:22:13 +00:00
Ed Schouten
6472ac3d8a
Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.
...
The SYSCTL_NODE macro defines a list that stores all child-elements of
that node. If there's no SYSCTL_DECL macro anywhere else, there's no
reason why it shouldn't be static.
2011-11-07 15:43:11 +00:00
Andrey V. Elsukov
5d807a0e1a
Include sys/sbuf.h directly.
...
Reviewed by: pjd
2011-07-11 05:22:31 +00:00
Andrey V. Elsukov
53ff3d1e9c
Remove unneeded checks, g_new_xxx functions can not return NULL.
...
Reviewed by: pjd
MFC after: 1 week
2011-03-31 06:30:59 +00:00
Andrey V. Elsukov
e76dc5129a
Sector size can not be greater than MAXPHYS.
...
MFC after: 1 week
2011-01-12 12:26:10 +00:00
Andrey V. Elsukov
eaaef50811
Remove redundant check.
...
MFC after: 1 week
2011-01-11 13:22:20 +00:00
Andrey V. Elsukov
f2b3e9e870
Round GNOP provider's mediasize to its sectorsize. This prevents KASSERT
...
in g_io_request when geom classes doing tasting.
PR: kern/147852
MFC after: 1 week
2011-01-11 11:42:22 +00:00
Pawel Jakub Dawidek
469e952070
Remove trailing spaces.
2006-09-30 08:16:49 +00:00
Pawel Jakub Dawidek
46ee0837c2
Fix format character.
...
Reported by: andre
2006-09-08 13:46:18 +00:00
Pawel Jakub Dawidek
6a146a1989
- Split failure probability configuration into read failure probability and
...
write failure probability.
- Allow to specify an error number to return of failure.
MFC after: 3 days
2006-09-08 09:21:21 +00:00
Pawel Jakub Dawidek
38ea96ac99
Remove trailing spaces.
2006-02-01 12:06:01 +00:00
Pawel Jakub Dawidek
58d85f544f
Log situation when EIO is returned.
2006-01-17 07:23:36 +00:00
Pawel Jakub Dawidek
54df0743c7
Remove bio leak when EIO error is emulated.
...
Found by: Coverity Prevent(tm)
MFC after: 3 days
2006-01-17 07:22:44 +00:00
Pawel Jakub Dawidek
b91df0e29e
MFp4: Typo fix (without it the XML GEOM tree wasn't consistent).
...
Reported by: Eric Anderson <anderson@centtech.com>
2005-12-19 06:05:40 +00:00
Pawel Jakub Dawidek
64806a739b
Fix build breakage by fixing typo.
...
Reported by: glebius
2005-12-09 11:38:02 +00:00
Pawel Jakub Dawidek
df3d5a19fc
Teach NOP GEOM class how to gather the following statistics:
...
- number of read I/O requests,
- number of write I/O requests,
- number of read bytes,
- number of written bytes.
Add 'reset' subcommand for resetting statistics.
2005-12-08 23:00:31 +00:00
Max Khon
b3f05a2e9e
g_nop_create: destroy newly created provider in case of errors.
2004-09-16 15:28:48 +00:00
Pawel Jakub Dawidek
b25aec32ff
NOP class doesn't operate on metadata, so the spoil event can be safely
...
ignored.
2004-08-18 16:58:42 +00:00
Poul-Henning Kamp
5721c9c76a
Tag all geom classes in the tree with a version number.
2004-08-08 07:57:53 +00:00
Pawel Jakub Dawidek
969ff54d70
- Fix unloading by the same way it is done in my other classes:
...
set gp->softc to NULL and return ENXIO when it is NULL, so GEOM
will not panic or hang, but unload one device on every 'unload'.
This make 'unload' command usable, but it have to be executed
<number of devices> + 1 times.
- Made use of 'pp' variable.
2004-08-02 00:37:40 +00:00
Pawel Jakub Dawidek
d5c96d389e
- Add '-S' option, which allow to specify sector size for transparent
...
provider.
- Bump version number.
This allows for a quite interesting trick. One can setup a stripe with
stripe size of 512 bytes and create transparent provider on top of it
with sector size equal to <ndisks> * 512. The result will be something
like RAID3 without parity disk (every access will touch all disks).
2004-07-30 08:19:22 +00:00
Pawel Jakub Dawidek
1d723f1d51
Improve geom(8)'s 'list' command to show geoms and their providers and
...
consumers. Teach STRIPE, CONCAT and NOP classes about this improvement.
2004-07-26 17:14:47 +00:00
Pawel Jakub Dawidek
e370e911b2
MFp4: Add two options for gnop(8)'s 'create' command:
...
-o offset - specifies where to start on the original provider
-s size - specifies size of the transparent provider
2004-07-19 07:52:56 +00:00
Pawel Jakub Dawidek
d462f0a1ac
Fix format string.
2004-06-07 13:40:40 +00:00
Pawel Jakub Dawidek
0e11f0a93b
Don't allow for duplicated entries creation.
2004-06-07 13:33:09 +00:00
Pawel Jakub Dawidek
02692c510d
- Change command name from 'config' to 'configure'.
...
- Bump version number.
2004-05-21 15:23:48 +00:00
Pawel Jakub Dawidek
89aaffec5c
Introduce NOP GEOM class. This is totally transparent GEOM class, but
...
it is very useful for tests. One is able to destroy its provider
forcibly if wants to test how other class handle such events.
One is also able to specify failure probability to check how other
classes handle I/O errors.
Supported by: Wheel - Open Technologies - http://www.wheel.pl
2004-05-20 10:15:53 +00:00