ipv4: Make final arg to ip_route_output_flow to be boolean "can_sleep"

Since that is what the current vague "flags" argument means.

Signed-off-by: David S. Miller <davem@davemloft.net>
このコミットが含まれているのは:
David S. Miller
2011-03-01 14:19:23 -08:00
コミット 420d44daa7
12個のファイルの変更16行の追加16行の削除

ファイルの表示

@@ -354,7 +354,7 @@ static struct rtable *find_route(struct t3cdev *dev, __be32 local_ip,
}
};
if (ip_route_output_flow(&init_net, &rt, &fl, NULL, 0))
if (ip_route_output_flow(&init_net, &rt, &fl, NULL, false))
return NULL;
return rt;
}