mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
Style fixes
* Fix cstyle issue in shrinker.h which exceeded 80 columns. * Silence shellcheck warning in zpool.d/smart script. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
3bc92b9ef6
commit
67b1362f04
@ -71,6 +71,7 @@ fi
|
|||||||
|
|
||||||
smartctl_path=$(command -v smartctl)
|
smartctl_path=$(command -v smartctl)
|
||||||
|
|
||||||
|
# shellcheck disable=SC2015
|
||||||
if [ -b "$VDEV_UPATH" ] && [ -x "$smartctl_path" ] || [ -n "$samples" ] ; then
|
if [ -b "$VDEV_UPATH" ] && [ -x "$smartctl_path" ] || [ -n "$samples" ] ; then
|
||||||
if [ -n "$samples" ] ; then
|
if [ -n "$samples" ] ; then
|
||||||
# cat a smartctl output text file instead of running smartctl
|
# cat a smartctl output text file instead of running smartctl
|
||||||
|
@ -97,7 +97,7 @@ static struct shrinker varname = { \
|
|||||||
static struct shrinker varname = { \
|
static struct shrinker varname = { \
|
||||||
.count_objects = countfunc, \
|
.count_objects = countfunc, \
|
||||||
.scan_objects = scanfunc, \
|
.scan_objects = scanfunc, \
|
||||||
.seeks = seek_cost \
|
.seeks = seek_cost \
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user