Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e126723 authored by Jon Medhurst (Tixy)'s avatar Jon Medhurst (Tixy) Committed by Amit Pundir
Browse files

xt_qtaguid: Fix boot panic



We need the change below because of mainline commit 351638e7 (net: pass
info struct via netdevice notifier). Otherwise we panic.

Change-Id: I7daf7513a733933fdcbaeebea7f8191f8b6a0432
Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
parent bc1bb868
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1375,7 +1375,7 @@ static void if_tag_stat_update(const char *ifname, uid_t uid,

static int iface_netdev_event_handler(struct notifier_block *nb,
				      unsigned long event, void *ptr) {
	struct net_device *dev = ptr;
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);

	if (unlikely(module_passive))
		return NOTIFY_DONE;