public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Laurent Chavey <chavey@google.com>,
	Eric Dumazet <edumazet@google.com>,
	"David S. Miller" <davem@davemloft.net>
Subject: [ 146/171 ] net: remove a WARN_ON() in net_enable_timestamp()
Date: Thu, 11 Apr 2013 16:27:29 -0400	[thread overview]
Message-ID: <20130411202610.234043385@goodmis.org> (raw)
In-Reply-To: 20130411202503.783159048@goodmis.org

[-- Attachment #1: 0146-net-remove-a-WARN_ON-in-net_enable_timestamp.patch --]
[-- Type: text/plain, Size: 2202 bytes --]

3.6.11.2 stable review patch.
If anyone has any objections, please let me know.

------------------

From: Eric Dumazet <edumazet@google.com>

[ Upstream commit 9979a55a833883242e3a29f3596676edd7199c46 ]

The WARN_ON(in_interrupt()) in net_enable_timestamp() can get false
positive, in socket clone path, run from softirq context :

[ 3641.624425] WARNING: at net/core/dev.c:1532 net_enable_timestamp+0x7b/0x80()
[ 3641.668811] Call Trace:
[ 3641.671254]  <IRQ>  [<ffffffff80286817>] warn_slowpath_common+0x87/0xc0
[ 3641.677871]  [<ffffffff8028686a>] warn_slowpath_null+0x1a/0x20
[ 3641.683683]  [<ffffffff80742f8b>] net_enable_timestamp+0x7b/0x80
[ 3641.689668]  [<ffffffff80732ce5>] sk_clone_lock+0x425/0x450
[ 3641.695222]  [<ffffffff8078db36>] inet_csk_clone_lock+0x16/0x170
[ 3641.701213]  [<ffffffff807ae449>] tcp_create_openreq_child+0x29/0x820
[ 3641.707663]  [<ffffffff807d62e2>] ? ipt_do_table+0x222/0x670
[ 3641.713354]  [<ffffffff807aaf5b>] tcp_v4_syn_recv_sock+0xab/0x3d0
[ 3641.719425]  [<ffffffff807af63a>] tcp_check_req+0x3da/0x530
[ 3641.724979]  [<ffffffff8078b400>] ? inet_hashinfo_init+0x60/0x80
[ 3641.730964]  [<ffffffff807ade6f>] ? tcp_v4_rcv+0x79f/0xbe0
[ 3641.736430]  [<ffffffff807ab9bd>] tcp_v4_do_rcv+0x38d/0x4f0
[ 3641.741985]  [<ffffffff807ae14a>] tcp_v4_rcv+0xa7a/0xbe0

Its safe at this point because the parent socket owns a reference
on the netstamp_needed, so we cant have a 0 -> 1 transition, which
requires to lock a mutex.

Instead of refining the check, lets remove it, as all known callers
are safe. If it ever changes in the future, static_key_slow_inc()
will complain anyway.

Reported-by: Laurent Chavey <chavey@google.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 net/core/dev.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/net/core/dev.c b/net/core/dev.c
index c41efb7..d283020 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1481,7 +1481,6 @@ void net_enable_timestamp(void)
 		return;
 	}
 #endif
-	WARN_ON(in_interrupt());
 	static_key_slow_inc(&netstamp_needed);
 }
 EXPORT_SYMBOL(net_enable_timestamp);
-- 
1.7.10.4



  parent reply	other threads:[~2013-04-11 21:19 UTC|newest]

Thread overview: 189+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-11 20:25 [ 000/171 ] 3.6.11.2-stable review Steven Rostedt
2013-04-11 20:25 ` [ 001/171 ] IP_GRE: Revert "IP_GRE: Fix kernel panic in IP_GRE with GRE csum" Steven Rostedt
2013-04-11 20:25 ` [ 002/171 ] ppp: Revert backport of "ppp: set qdisc_tx_busylock to avoid LOCKDEP splat" Steven Rostedt
2013-04-11 20:25 ` [ 003/171 ] net: qdisc busylock needs lockdep annotations Steven Rostedt
2013-04-11 20:25 ` [ 004/171 ] sunsu: Fix panic in case of nonexistent port at "console=ttySY" cmdline option Steven Rostedt
2013-04-11 20:25 ` [ 005/171 ] net/ipv4: Ensure that location of timestamp option is stored Steven Rostedt
2013-04-11 20:25 ` [ 006/171 ] netconsole: dont call __netpoll_cleanup() while atomic Steven Rostedt
2013-04-11 20:25 ` [ 007/171 ] batman-adv: verify tt len does not exceed packet len Steven Rostedt
2013-04-11 20:25 ` [ 008/171 ] bonding: dont call update_speed_duplex() under spinlocks Steven Rostedt
2013-04-11 20:25 ` [ 009/171 ] tg3: 5715 does not link up when autoneg off Steven Rostedt
2013-04-11 20:25 ` [ 010/171 ] sctp: Use correct sideffect command in duplicate cookie handling Steven Rostedt
2013-04-11 20:25 ` [ 011/171 ] sctp: dont break the loop while meeting the active_path so as to find the matched transport Steven Rostedt
2013-04-11 20:25 ` [ 012/171 ] ipv4: fix definition of FIB_TABLE_HASHSZ Steven Rostedt
2013-04-11 20:25 ` [ 013/171 ] tcp: fix skb_availroom() Steven Rostedt
2013-04-11 20:25 ` [ 014/171 ] skb: Propagate pfmemalloc on skb from head page only Steven Rostedt
2013-04-11 20:25 ` [ 015/171 ] rtnetlink: Mask the rta_type when range checking Steven Rostedt
2013-04-11 20:25 ` [ 016/171 ] bnx2x: add missing napi deletion in error path Steven Rostedt
2013-04-11 20:25 ` [ 017/171 ] vhost/net: fix heads usage of ubuf_info Steven Rostedt
2013-04-11 20:25 ` [ 018/171 ] bnx2x: fix occasional statistics off-by-4GB error Steven Rostedt
2013-04-11 20:25 ` [ 019/171 ] tcp: dont handle MTU reduction on LISTEN socket Steven Rostedt
2013-04-11 20:25 ` [ 020/171 ] inet: limit length of fragment queue hash table bucket lists Steven Rostedt
2013-04-11 20:25 ` [ 021/171 ] sfc: Properly sync RX DMA buffer when it is not the last in the page Steven Rostedt
2013-04-11 20:25 ` [ 022/171 ] sfc: Fix efx_rx_buf_offset() in the presence of swiotlb Steven Rostedt
2013-04-11 20:25 ` [ 023/171 ] sfc: Correct efx_rx_buffer::page_offset when EFX_PAGE_IP_ALIGN != 0 Steven Rostedt
2013-04-11 20:25 ` [ 024/171 ] sfc: lock TX queues when calling netif_device_detach() Steven Rostedt
2013-04-11 20:42   ` Ben Hutchings
2013-04-11 20:54     ` Steven Rostedt
2013-04-11 20:57       ` Steven Rostedt
2013-04-11 20:25 ` [ 025/171 ] sfc: Detach net device when stopping queues for reconfiguration Steven Rostedt
2013-04-11 20:25 ` [ 026/171 ] sfc: Only use TX push if a single descriptor is to be written Steven Rostedt
2013-04-11 21:15   ` Ben Hutchings
2013-04-11 21:22     ` Steven Rostedt
2013-04-12 22:05     ` Ben Hutchings
2013-04-13  1:12       ` Steven Rostedt
2013-04-11 20:25 ` [ 027/171 ] ALSA: hda/cirrus - Fix the digital beep registration Steven Rostedt
2013-04-11 20:25 ` [ 028/171 ] ALSA: hda - Fix typo in checking IEC958 emphasis bit Steven Rostedt
2013-04-11 20:25 ` [ 029/171 ] ALSA: snd-usb: mixer: propagate errors up the call chain Steven Rostedt
2013-04-11 20:25 ` [ 030/171 ] ALSA: snd-usb: mixer: ignore -EINVAL in snd_usb_mixer_controls() Steven Rostedt
2013-04-11 20:25 ` [ 031/171 ] saner proc_get_inode() calling conventions Steven Rostedt
2013-04-11 20:25 ` [ 032/171 ] vfs,proc: guarantee unique inodes in /proc Steven Rostedt
2013-04-11 20:25 ` [ 033/171 ] Revert "drm/i915: try to train DP even harder" Steven Rostedt
2013-04-11 20:25 ` [ 034/171 ] drm/i915: restrict kernel address leak in debugfs Steven Rostedt
2013-04-11 20:25 ` [ 035/171 ] tracing: Fix race in snapshot swapping Steven Rostedt
2013-04-11 20:25 ` [ 036/171 ] tracing: Fix free of probe entry by calling call_rcu_sched() Steven Rostedt
2013-04-11 20:25 ` [ 037/171 ] tracing: Protect tracer flags with trace_types_lock Steven Rostedt
2013-04-11 20:25 ` [ 038/171 ] tracing: Keep overwrite in sync between regular and snapshot buffers Steven Rostedt
2013-04-11 20:25 ` [ 039/171 ] rtlwifi: rtl8192cu: Fix schedule while atomic bug splat Steven Rostedt
2013-04-11 20:25 ` [ 040/171 ] rtlwifi: rtl8192cu: Fix problem that prevents reassociation Steven Rostedt
2013-04-11 20:25 ` [ 041/171 ] mwifiex: fix potential out-of-boundary access to ibss rate table Steven Rostedt
2013-04-11 20:25 ` [ 042/171 ] drm/i915: bounds check execbuffer relocation count Steven Rostedt
2013-04-11 20:25 ` [ 043/171 ] KMS: fix EDID detailed timing vsync parsing Steven Rostedt
2013-04-11 20:25 ` [ 044/171 ] KMS: fix EDID detailed timing frame rate Steven Rostedt
2013-04-11 20:25 ` [ 045/171 ] mm/hugetlb: fix total hugetlbfs pages count when using memory overcommit accouting Steven Rostedt
2013-04-11 20:25 ` [ 046/171 ] mqueue: sys_mq_open: do not call mnt_drop_write() if read-only Steven Rostedt
2013-04-11 20:25 ` [ 047/171 ] target/iscsi: Fix mutual CHAP auth on big-endian arches Steven Rostedt
2013-04-11 20:25 ` [ 048/171 ] target/file: Bump FD_MAX_SECTORS to 2048 to handle 1M sized I/Os Steven Rostedt
2013-04-11 20:25 ` [ 049/171 ] dm verity: avoid deadlock Steven Rostedt
2013-04-11 20:25 ` [ 050/171 ] drm/mgag200: Bug fix: Modified pll algorithm for EH project Steven Rostedt
2013-04-11 20:25 ` [ 051/171 ] drm/radeon: add Richland pci ids Steven Rostedt
2013-04-11 20:25 ` [ 052/171 ] drm/radeon: add support for Richland APUs Steven Rostedt
2013-04-11 20:25 ` [ 053/171 ] drm/radeon/benchmark: make sure bo blit copy exists before using it Steven Rostedt
2013-04-11 20:25 ` [ 054/171 ] cifs: ignore everything in SPNEGO blob after mechTypes Steven Rostedt
2013-04-11 20:25 ` [ 055/171 ] jbd2: fix use after free in jbd2_journal_dirty_metadata() Steven Rostedt
2013-04-11 20:25 ` [ 056/171 ] ext4: fix the wrong number of the allocated blocks in ext4_split_extent() Steven Rostedt
2013-04-11 20:26 ` [ 057/171 ] usb-storage: add unusual_devs entry for Samsung YP-Z3 mp3 player Steven Rostedt
2013-04-11 20:26 ` [ 058/171 ] ext4: use atomic64_t for the per-flexbg free_clusters count Steven Rostedt
2013-04-11 20:26 ` [ 059/171 ] ext4: fix data=journal fast mount/umount hang Steven Rostedt
2013-04-11 20:26 ` [ 060/171 ] IPoIB: Fix send lockup due to missed TX completion Steven Rostedt
2013-04-11 20:26 ` [ 061/171 ] clockevents: Dont allow dummy broadcast timers Steven Rostedt
2013-04-11 20:26 ` [ 062/171 ] x86-64: Fix the failure case in copy_user_handle_tail() Steven Rostedt
2013-04-11 20:26 ` [ 063/171 ] USB: xhci - fix bit definitions for IMAN register Steven Rostedt
2013-04-11 20:26 ` [ 064/171 ] USB: xhci: correctly enable interrupts Steven Rostedt
2013-04-11 20:26 ` [ 065/171 ] USB: cdc-acm: fix device unregistration Steven Rostedt
2013-04-11 20:26 ` [ 066/171 ] USB: EHCI: fix regression in QH unlinking Steven Rostedt
2013-04-11 20:26 ` [ 067/171 ] usb: gadget: ffs: fix enable multiple instances Steven Rostedt
2013-04-11 20:26 ` [ 068/171 ] USB: serial: fix interface refcounting Steven Rostedt
2013-04-11 20:26 ` [ 069/171 ] ACPI: Rework acpi_get_child() to be more efficient Steven Rostedt
2013-04-11 20:26 ` [ 070/171 ] udf: Fix bitmap overflow on large filesystems with small block size Steven Rostedt
2013-04-11 20:26 ` [ 071/171 ] USB: garmin_gps: fix memory leak on disconnect Steven Rostedt
2013-04-11 20:26 ` [ 072/171 ] USB: io_ti: fix get_icount for two port adapters Steven Rostedt
2013-04-11 20:26 ` [ 073/171 ] ARM: DMA-mapping: add missing GFP_DMA flag for atomic buffer allocation Steven Rostedt
2013-04-11 20:26 ` [ 074/171 ] SUNRPC: Add barriers to ensure read ordering in rpc_wake_up_task_queue_locked Steven Rostedt
2013-04-11 20:26 ` [ 075/171 ] tile: expect new initramfs name from hypervisor file system Steven Rostedt
2013-04-11 20:26 ` [ 076/171 ] Bluetooth: Add support for Dell[QCA 0cf3:0036] Steven Rostedt
2013-04-11 20:26 ` [ 077/171 ] Bluetooth: Add support for Dell[QCA 0cf3:817a] Steven Rostedt
2013-04-11 20:26 ` [ 078/171 ] staging: comedi: s626: fix continuous acquisition Steven Rostedt
2013-04-11 20:26 ` [ 079/171 ] sysfs: fix race between readdir and lseek Steven Rostedt
2013-04-11 20:26 ` [ 080/171 ] sysfs: handle failure path correctly for readdir() Steven Rostedt
2013-04-11 20:26 ` [ 081/171 ] can: sja1000: fix define conflict on SH Steven Rostedt
2013-04-11 20:26 ` [ 082/171 ] ath9k: limit tx path hang check to normal data queues Steven Rostedt
2013-04-11 20:26 ` [ 083/171 ] ath9k: avoid queueing hw check work when suspended Steven Rostedt
2013-04-11 20:26 ` [ 084/171 ] HID: usbhid: quirk for Realtek Multi-card reader Steven Rostedt
2013-04-11 20:26 ` [ 085/171 ] HID: usbhid: quirk for MSI GX680R led panel Steven Rostedt
2013-04-11 20:26 ` [ 086/171 ] HID: usbhid: fix build problem Steven Rostedt
2013-04-11 20:26 ` [ 087/171 ] rtlwifi: usb: add missing freeing of skbuff Steven Rostedt
2013-04-11 20:26 ` [ 088/171 ] b43: N-PHY: increase initial value of "mind" in RSSI calibration Steven Rostedt
2013-04-11 20:26 ` [ 089/171 ] b43: A fix for DMA transmission sequence errors Steven Rostedt
2013-04-11 20:26 ` [ 090/171 ] b43: N-PHY: use more bits for offset in RSSI calibration Steven Rostedt
2013-04-11 20:26 ` [ 091/171 ] tg3: fix length overflow in VPD firmware parsing Steven Rostedt
2013-04-11 20:26 ` [ 092/171 ] mac80211: always synchronize_net() during station removal Steven Rostedt
2013-04-11 20:26 ` [ 093/171 ] iommu/amd: Make sure dma_ops are set for hotplug devices Steven Rostedt
2013-04-11 20:26 ` [ 094/171 ] xen/blkback: correctly respond to unknown, non-native requests Steven Rostedt
2013-04-11 20:26 ` [ 095/171 ] xen-blkback: fix dispatch_rw_block_io() error path Steven Rostedt
2013-04-11 20:26 ` [ 096/171 ] tty: atmel_serial_probe(): index of atmel_ports[] fix Steven Rostedt
2013-04-11 20:26 ` [ 097/171 ] usb: ftdi_sio: Add support for Mitsubishi FX-USB-AW/-BD Steven Rostedt
2013-04-11 20:26 ` [ 098/171 ] vt: synchronize_rcu() under spinlock is not nice Steven Rostedt
2013-04-11 20:26 ` [ 099/171 ] mwifiex: fix race when queuing commands Steven Rostedt
2013-04-11 21:29   ` Bing Zhao
2013-04-11 22:08     ` Steven Rostedt
2013-04-11 20:26 ` [ 100/171 ] mwifiex: skip pending commands after function shutdown Steven Rostedt
2013-04-11 20:26 ` [ 101/171 ] pnfs-block: removing DM device maybe cause oops when call dev_remove Steven Rostedt
2013-04-11 20:26 ` [ 102/171 ] NFSv4: Fix the string length returned by the idmapper Steven Rostedt
2013-04-11 20:26 ` [ 103/171 ] NFSv4.1: Fix a race in pNFS layoutcommit Steven Rostedt
2013-04-11 20:26 ` [ 104/171 ] NFSv4.1: Always clear the NFS_INO_LAYOUTCOMMIT in layoutreturn Steven Rostedt
2013-04-11 20:26 ` [ 105/171 ] net/irda: add missing error path release_sock call Steven Rostedt
2013-04-11 20:26 ` [ 106/171 ] Nest rename_lock inside vfsmount_lock Steven Rostedt
2013-04-11 20:26 ` [ 107/171 ] USB: EHCI: fix bug in iTD/siTD DMA pool allocation Steven Rostedt
2013-04-11 20:26 ` [ 108/171 ] usb: xhci: Fix TRB transfer length macro used for Event TRB Steven Rostedt
2013-04-11 20:26 ` [ 109/171 ] userns: Dont allow creation if the user is chrooted Steven Rostedt
2013-10-22 11:15   ` Luis Henriques
2013-10-22 17:45     ` Eric W. Biederman
2013-10-23  9:32       ` Luis Henriques
2013-04-11 20:26 ` [ 110/171 ] vfs: Add a mount flag to lock read only bind mounts Steven Rostedt
2013-04-11 20:57   ` Eric W. Biederman
2013-04-11 21:02     ` Steven Rostedt
2013-04-11 20:26 ` [ 111/171 ] ipc: Restrict mounting the mqueue filesystem Steven Rostedt
2013-04-11 20:55   ` Eric W. Biederman
2013-04-11 20:59     ` Steven Rostedt
2013-04-11 20:26 ` [ 112/171 ] Btrfs: use set_nlink if our i_nlink is 0 Steven Rostedt
2013-04-11 20:26 ` [ 113/171 ] Btrfs: fix race between mmap writes and compression Steven Rostedt
2013-04-11 20:26 ` [ 114/171 ] Btrfs: limit the global reserve to 512mb Steven Rostedt
2013-04-11 20:26 ` [ 115/171 ] Btrfs: dont drop path when printing out tree errors in scrub Steven Rostedt
2013-04-11 20:26 ` [ 116/171 ] USB: serial: add modem-status-change wait queue Steven Rostedt
2013-04-11 20:27 ` [ 117/171 ] USB: serial: fix hang when opening port Steven Rostedt
2013-04-11 20:27 ` [ 118/171 ] USB: quatech2: fix use-after-free in TIOCMIWAIT Steven Rostedt
2013-04-11 20:27 ` [ 119/171 ] USB: mos7840: fix broken TIOCMIWAIT Steven Rostedt
2013-04-11 20:27 ` [ 120/171 ] USB: io_ti: fix use-after-free in TIOCMIWAIT Steven Rostedt
2013-04-11 20:27 ` [ 121/171 ] USB: oti6858: " Steven Rostedt
2013-04-11 20:27 ` [ 122/171 ] USB: ftdi_sio: " Steven Rostedt
2013-04-11 20:27 ` [ 123/171 ] USB: pl2303: " Steven Rostedt
2013-04-11 20:27 ` [ 124/171 ] USB: mos7840: " Steven Rostedt
2013-04-11 20:27 ` [ 125/171 ] USB: spcp8x5: " Steven Rostedt
2013-04-11 20:27 ` [ 126/171 ] USB: ssu100: " Steven Rostedt
2013-04-11 20:27 ` [ 127/171 ] USB: ch341: " Steven Rostedt
2013-04-11 20:27 ` [ 128/171 ] USB: io_edgeport: " Steven Rostedt
2013-04-11 20:27 ` [ 129/171 ] USB: f81232: " Steven Rostedt
2013-04-11 20:27 ` [ 130/171 ] USB: ark3116: " Steven Rostedt
2013-04-11 20:27 ` [ 131/171 ] USB: mct_u232: " Steven Rostedt
2013-04-11 20:27 ` [ 132/171 ] USB: cypress_m8: " Steven Rostedt
2013-04-11 20:27 ` [ 133/171 ] USB: ti_usb_3410_5052: " Steven Rostedt
2013-04-11 20:27 ` [ 134/171 ] usb: gadget: udc-core: fix a regression during gadget driver unbinding Steven Rostedt
2013-04-11 20:27 ` [ 135/171 ] loop: prevent bdev freeing while device in use Steven Rostedt
2013-04-11 20:27 ` [ 136/171 ] ARM: cns3xxx: fix mapping of private memory region Steven Rostedt
2013-04-11 20:27 ` [ 137/171 ] ARM: kirkwood: Fix chip-delay for GoFlex Net Steven Rostedt
2013-04-11 20:27 ` [ 138/171 ] virtio: console: rename cvq_lock to c_ivq_lock Steven Rostedt
2013-04-11 20:27 ` [ 139/171 ] virtio: console: add locking around c_ovq operations Steven Rostedt
2013-04-11 20:27 ` [ 140/171 ] nfsd4: reject "negative" acl lengths Steven Rostedt
2013-04-11 20:27 ` [ 141/171 ] drm/i915: Use the fixed pixel clock for eDP in intel_dp_set_m_n() Steven Rostedt
2013-04-11 20:27 ` [ 142/171 ] drm/i915: Dont clobber crtc->fb when queue_flip fails Steven Rostedt
2013-04-11 20:27 ` [ 143/171 ] iwlwifi: dvm: dont send HCMD in restart flow Steven Rostedt
2013-04-11 20:27 ` [ 144/171 ] Btrfs: fix space leak when we fail to reserve metadata space Steven Rostedt
2013-04-11 20:27 ` [ 145/171 ] tracing: Prevent buffer overwrite disabled for latency tracers Steven Rostedt
2013-04-11 20:27 ` Steven Rostedt [this message]
2013-04-11 20:27 ` [ 147/171 ] sky2: Receive Overflows not counted Steven Rostedt
2013-04-11 20:27 ` [ 148/171 ] sky2: Threshold for Pause Packet is set wrong Steven Rostedt
2013-04-11 20:27 ` [ 149/171 ] tcp: preserve ACK clocking in TSO Steven Rostedt
2013-04-11 20:27 ` [ 150/171 ] tcp: undo spurious timeout after SACK reneging Steven Rostedt
2013-04-11 20:27 ` [ 151/171 ] 8021q: fix a potential use-after-free Steven Rostedt
2013-04-11 20:27 ` [ 152/171 ] thermal: shorten too long mcast group name Steven Rostedt
2013-04-11 20:27 ` [ 153/171 ] genetlink: trigger BUG_ON if a group name is too long Steven Rostedt
2013-04-11 20:27 ` [ 154/171 ] unix: fix a race condition in unix_release() Steven Rostedt
2013-04-11 20:27 ` [ 155/171 ] bonding: remove already created master sysfs link on failure Steven Rostedt
2013-04-11 20:27 ` [ 156/171 ] bonding: fix miimon and arp_interval delayed work race conditions Steven Rostedt
2013-04-11 20:27 ` [ 157/171 ] bonding: fix disabling of arp_interval and miimon Steven Rostedt
2013-04-11 20:27 ` [ 158/171 ] drivers: net: ethernet: davinci_emac: use netif_wake_queue() while restarting tx queue Steven Rostedt
2013-04-11 20:27 ` [ 159/171 ] drivers: net: ethernet: cpsw: " Steven Rostedt
2013-04-11 20:27 ` [ 160/171 ] aoe: reserve enough headroom on skbs Steven Rostedt
2013-04-11 20:27 ` [ 161/171 ] atl1e: drop pci-msi support because of packet corruption Steven Rostedt
2013-04-11 20:27 ` [ 162/171 ] DM9000B: driver initialization upgrade Steven Rostedt
2013-04-11 20:27 ` [ 163/171 ] ipv6: fix bad free of addrconf_init_net Steven Rostedt
2013-09-24  6:36   ` zhuyj
2013-04-11 20:27 ` [ 164/171 ] ipv6: dont accept multicast traffic with scope 0 Steven Rostedt
2013-04-11 20:27 ` [ 165/171 ] ipv6: dont accept node local multicast traffic from the wire Steven Rostedt
2013-04-11 20:27 ` [ 166/171 ] ks8851: Fix interpretation of rxlen field Steven Rostedt
2013-04-11 20:27 ` [ 167/171 ] net: add a synchronize_net() in netdev_rx_handler_unregister() Steven Rostedt
2013-04-11 20:27 ` [ 168/171 ] net: fq_codel: Fix off-by-one error Steven Rostedt
2013-04-11 20:27 ` [ 169/171 ] pch_gbe: fix ip_summed checksum reporting on rx Steven Rostedt
2013-04-11 20:27 ` [ 170/171 ] smsc75xx: fix jumbo frame support Steven Rostedt
2013-04-11 20:27 ` [ 171/171 ] bonding: get netdev_rx_handler_unregister out of locks Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130411202610.234043385@goodmis.org \
    --to=rostedt@goodmis.org \
    --cc=chavey@google.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox