From: Alasdair Kergon Date: Tue, 28 Jun 2011 09:24:13 +0000 (+0000) Subject: more fixes to readahead etc. X-Git-Tag: v2_02_91~801 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=7b5e4dcf1f7c298e001a183e49cc623f637f35ea;p=lvm2.git more fixes to readahead etc. --- diff --git a/libdm/libdm-common.c b/libdm/libdm-common.c index 75b2f5027..fa6746a04 100644 --- a/libdm/libdm-common.c +++ b/libdm/libdm-common.c @@ -863,13 +863,6 @@ static int _stack_node_op(node_op_t type, const char *dev_name, uint32_t major, size_t len = strlen(dev_name) + strlen(old_name) + 2; char *pos; - /* - * Clear warn_if_udev_failed if rely_on_udev is set. It doesn't get - * checked in this case - this just removes the flag from log messages. - */ - if (rely_on_udev) - warn_if_udev_failed = 0; - /* * Note: warn_if_udev_failed must have valid content */ @@ -911,10 +904,16 @@ static int _stack_node_op(node_op_t type, const char *dev_name, uint32_t major, */ dm_list_iterate_safe(noph, nopht, &_node_ops) { nop = dm_list_item(noph, struct node_op_parms); - if (!strcmp(old_name, nop->dev_name)) + if (!strcmp(old_name, nop->dev_name)) { _log_node_op("Unstacking", nop); _del_node_op(nop); + } } + else if (type == NODE_READ_AHEAD) { + /* udev doesn't process readahead */ + rely_on_udev = 0; + warn_if_udev_failed = 0; + } if (!(nop = dm_malloc(sizeof(*nop) + len))) { log_error("Insufficient memory to stack mknod operation"); @@ -930,9 +929,14 @@ static int _stack_node_op(node_op_t type, const char *dev_name, uint32_t major, nop->mode = mode; nop->read_ahead = read_ahead; nop->read_ahead_flags = read_ahead_flags; - nop->warn_if_udev_failed = warn_if_udev_failed; nop->rely_on_udev = rely_on_udev; + /* + * Clear warn_if_udev_failed if rely_on_udev is set. It doesn't get + * checked in this case - this just removes the flag from log messages. + */ + nop->warn_if_udev_failed = rely_on_udev ? 0 : warn_if_udev_failed; + _store_str(&pos, &nop->dev_name, dev_name); _store_str(&pos, &nop->old_name, old_name);