From cf05bfb35f00c72f27ec36619259cc77eb56186d Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Thu, 14 Oct 2021 14:01:30 -0600 Subject: [PATCH] LU-15106 ofd: quiet deprecated param warning There are a number of obdfilter parameter files that report a warning even when they are read, which is confusing for users if there is a tool that is scraping all available parameters: # lctl get_param obdfilter.*.* ofd: 'obdfilter.*.read_cache_enabled' is deprecated, use 'osd-*.read_cache_enabled' instead ofd: 'obdfilter.*.readcache_max_filesize' is deprecated, use 'osd-*.readcache_max_filesize' instead ofd: 'obdfilter.*.sync_on_lock_cancel' is deprecated, use 'obdfilter.*.sync_lock_cancel' instead ofd: 'obdfilter.*.writethrough_cache_enabled' is deprecated, use 'osd-*.writethrough_cache_enabled' instead It should only print a message if the parameters are actually written. Also fix the messages to reference the correct parameter names. Most of these parameter links were added in 2.4 with the addition of osd-ldiskfs. However, the deprecation warnings were only added in 2.12.53 and slated for removal in 2.15, but were not backported to 2.12 LTS, and there hasn't been an LTS release since then, so it is better bump removal so the upcoming 2.15 LTS release includes them. Fix the test scripts to only use the new parameter names, to avoid spurious warning messages. We don't test interop with 2.3 anymore. Test-Parameters: trivial Fixes: 7df7347b7b18 ("LU-12967 ofd: restore sync_on_lock_cancel tunable") Fixes: 493cd8088388 ("LU-8066 osd: migrate from proc to sysfs") Signed-off-by: Andreas Dilger Change-Id: Ie548e5b6af5463959fb4774e31996097373ebbe5 --- lustre/ofd/lproc_ofd.c | 42 ++++++++++++++---------------------------- lustre/tests/test-framework.sh | 6 ++---- 2 files changed, 16 insertions(+), 32 deletions(-) diff --git a/lustre/ofd/lproc_ofd.c b/lustre/ofd/lproc_ofd.c index 3d6eb4b..f9015cd 100644 --- a/lustre/ofd/lproc_ofd.c +++ b/lustre/ofd/lproc_ofd.c @@ -510,14 +510,9 @@ LPROC_SEQ_FOPS_RO(ofd_checksum_type); #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 16, 53, 0) -static bool sync_on_lock_cancel_warned; static ssize_t sync_on_lock_cancel_show(struct kobject *kobj, struct attribute *attr, char *buf) { - if (!sync_on_lock_cancel_warned) { - sync_on_lock_cancel_warned = true; - pr_info("ofd: 'obdfilter.*.sync_on_lock_cancel' is deprecated, use 'obdfilter.*.sync_lock_cancel' instead\n"); - } return sync_lock_cancel_show(kobj, attr, buf); } @@ -525,6 +520,8 @@ static ssize_t sync_on_lock_cancel_store(struct kobject *kobj, struct attribute *attr, const char *buffer, size_t count) { + static bool sync_on_lock_cancel_warned; + if (!sync_on_lock_cancel_warned) { sync_on_lock_cancel_warned = true; pr_info("ofd: 'obdfilter.*.sync_on_lock_cancel' is deprecated, use 'obdfilter.*.sync_lock_cancel' instead\n"); @@ -896,11 +893,7 @@ static ssize_t checksum_t10pi_enforce_store(struct kobject *kobj, } LUSTRE_RW_ATTR(checksum_t10pi_enforce); -#if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 53, 0) -static bool max_file_warned; -static bool rd_cache_warned; -static bool wr_cache_warned; - +#if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 15, 53, 0) static ssize_t read_cache_enable_show(struct kobject *kobj, struct attribute *attr, char *buf) @@ -909,11 +902,6 @@ static ssize_t read_cache_enable_show(struct kobject *kobj, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); - if (!rd_cache_warned) { - rd_cache_warned = true; - pr_info("ofd: 'obdfilter.*.read_cache_enabled' is deprecated, use 'osd-*.read_cache_enabled' instead\n"); - } - if (!ofd->ofd_read_cache_enable) return -EOPNOTSUPP; @@ -928,10 +916,11 @@ static ssize_t read_cache_enable_store(struct kobject *kobj, struct obd_device *obd = container_of(kobj, struct obd_device, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); + static bool rd_cache_warned; if (!rd_cache_warned) { rd_cache_warned = true; - pr_info("ofd: 'obdfilter.*.read_cache_enabled' is deprecated, use 'osd-*.read_cache_enabled' instead\n"); + pr_info("ofd: 'obdfilter.*.read_cache_enable' is deprecated, use 'osd-*.*.read_cache_enable' instead\n"); } if (!ofd->ofd_read_cache_enable) @@ -950,11 +939,6 @@ static ssize_t readcache_max_filesize_show(struct kobject *kobj, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); - if (!max_file_warned) { - max_file_warned = true; - pr_info("ofd: 'obdfilter.*.readcache_max_filesize' is deprecated, use 'osd-*.readcache_max_filesize' instead\n"); - } - if (!ofd->ofd_read_cache_max_filesize) return -EOPNOTSUPP; @@ -969,10 +953,11 @@ static ssize_t readcache_max_filesize_store(struct kobject *kobj, struct obd_device *obd = container_of(kobj, struct obd_device, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); + static bool max_file_warned; if (!max_file_warned) { max_file_warned = true; - pr_info("ofd: 'obdfilter.*.readcache_max_filesize' is deprecated, use 'osd-*.readcache_max_filesize' instead\n"); + pr_info("ofd: 'obdfilter.*.readcache_max_filesize' is deprecated, use 'osd-*.*.readcache_max_filesize' instead\n"); } if (!ofd->ofd_read_cache_max_filesize) @@ -992,11 +977,6 @@ static ssize_t writethrough_cache_enable_show(struct kobject *kobj, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); - if (!wr_cache_warned) { - wr_cache_warned = true; - pr_info("ofd: 'obdfilter.*.writethrough_cache_enabled' is deprecated, use 'osd-*.writethrough_cache_enabled' instead\n"); - } - if (!ofd->ofd_write_cache_enable) return -EOPNOTSUPP; @@ -1011,6 +991,12 @@ static ssize_t writethrough_cache_enable_store(struct kobject *kobj, struct obd_device *obd = container_of(kobj, struct obd_device, obd_kset.kobj); struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev); + static bool wr_cache_warned; + + if (!wr_cache_warned) { + wr_cache_warned = true; + pr_info("ofd: 'obdfilter.*.writethrough_cache_enable' is deprecated, use 'osd-*.*.writethrough_cache_enable' instead\n"); + } if (!ofd->ofd_write_cache_enable) return -EOPNOTSUPP; @@ -1133,7 +1119,7 @@ static struct attribute *ofd_attrs[] = { &lustre_attr_access_log_size.attr, &lustre_attr_job_cleanup_interval.attr, &lustre_attr_checksum_t10pi_enforce.attr, -#if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 53, 0) +#if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 15, 53, 0) &lustre_attr_read_cache_enable.attr, &lustre_attr_readcache_max_filesize.attr, &lustre_attr_writethrough_cache_enable.attr, diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 2bc5b70..37fdcfe 100755 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -1566,8 +1566,7 @@ get_osd_param() { local device=${2:-$FSNAME-OST*} local name=$3 - do_nodes $nodes "$LCTL get_param -n obdfilter.$device.$name \ - osd-*.$device.$name 2>&1" | grep -v 'error:' + do_nodes $nodes "$LCTL get_param -n osd-*.$device.$name" } set_osd_param() { @@ -1576,8 +1575,7 @@ set_osd_param() { local name=$3 local value=$4 - do_nodes $nodes "$LCTL set_param -n obdfilter.$device.$name=$value \ - osd-*.$device.$name=$value 2>&1" | grep -v 'error:' + do_nodes $nodes "$LCTL set_param -n osd-*.$device.$name=$value" } set_debug_size () { -- 1.8.3.1