mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
- The automatic log module loading patch proposed for the upstream kernel
works on '-'s, not '_'s. This is due to the preference to have log module file names that do not mix '_'s and '-'s.
This commit is contained in:
parent
f9ddc76399
commit
d6d4661517
@ -1,5 +1,6 @@
|
||||
Version 1.02.25 -
|
||||
====================================
|
||||
Change cluster mirror log type name (s/clustered_/clustered-/)
|
||||
|
||||
Version 1.02.24 - 20th December 2007
|
||||
====================================
|
||||
|
@ -1289,7 +1289,7 @@ static int _emit_segment_line(struct dm_task *dmt, struct load_segment *seg, uin
|
||||
if (seg->clustered) {
|
||||
if (seg->uuid)
|
||||
log_parm_count++;
|
||||
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "clustered_")) < 0) {
|
||||
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "clustered-")) < 0) {
|
||||
stack; /* Out of space */
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user