mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[IPV4]: Remove check for ifa->ifa_dev != NULL.
This is a callback registered to inet address notifier chain. The check is useless as: - ifa->ifa_dev is always != NULL - similar checks are abscent in all other notifiers. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a337499f66
commit
5811769c78
1 changed files with 0 additions and 4 deletions
|
@ -648,10 +648,6 @@ static int clip_inet_event(struct notifier_block *this, unsigned long event,
|
||||||
struct in_device *in_dev;
|
struct in_device *in_dev;
|
||||||
|
|
||||||
in_dev = ((struct in_ifaddr *)ifa)->ifa_dev;
|
in_dev = ((struct in_ifaddr *)ifa)->ifa_dev;
|
||||||
if (!in_dev || !in_dev->dev) {
|
|
||||||
printk(KERN_WARNING "clip_inet_event: no device\n");
|
|
||||||
return NOTIFY_DONE;
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* Transitions are of the down-change-up type, so it's sufficient to
|
* Transitions are of the down-change-up type, so it's sufficient to
|
||||||
* handle the change on up.
|
* handle the change on up.
|
||||||
|
|
Loading…
Reference in a new issue