Search
j0ke.net Open Build Service
>
Projects
>
GFS
>
multipath-tools
> multipath-tools-init-prio_name-keyword
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File multipath-tools-init-prio_name-keyword of Package multipath-tools
commit defece8680afbc4a97f9fc52ec965a763179ae64 Author: Hannes Reinecke <hare@acerbis.suse.de> Date: Fri Feb 29 01:50:56 2008 +0100 Initialize prio_name keyword correctly The prio_name keyword has not been initialized correctly, so it doesn't show up in the default hardware-table output. References: 364858 Signed-off-by: Hannes Reinecke <hare@suse.de> diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c index c78c4a2..6c64231 100644 --- a/libmultipath/hwtable.c +++ b/libmultipath/hwtable.c @@ -718,6 +718,7 @@ setup_default_hwtable (vector hw) while (hwe->vendor) { hwe->checker = checker_lookup(hwe->checker_name); + hwe->prio = prio_lookup(hwe->prio_name); r += store_hwe(hw, hwe); hwe++; }