summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamelia Groza <camelia.groza@gmail.com>2013-07-11 09:55:51 +0300
committerDavid S. Miller <davem@davemloft.net>2013-07-11 12:02:39 -0700
commit3b8ccd447375acebed9af0a3798e1ab4e58bedf4 (patch)
tree4c5be56f1d86d7c310102e7967d4e80767e2d993
parentf2966cd5691058b8674a20766525bedeaea9cbcf (diff)
downloadkernel-3b8ccd447375acebed9af0a3798e1ab4e58bedf4.tar.gz
inet: fix spacing in assignment
Found using checkpatch.pl Signed-off-by: Camelia Groza <camelia.groza@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv4/inet_hashtables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c
index 6af375afeeef..7bd8983dbfcf 100644
--- a/net/ipv4/inet_hashtables.c
+++ b/net/ipv4/inet_hashtables.c
@@ -467,7 +467,7 @@ void inet_unhash(struct sock *sk)
lock = inet_ehash_lockp(hashinfo, sk->sk_hash);
spin_lock_bh(lock);
- done =__sk_nulls_del_node_init_rcu(sk);
+ done = __sk_nulls_del_node_init_rcu(sk);
if (done)
sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
spin_unlock_bh(lock);
init/do_mounts_rd.c?h=linux-5.18.y&id=18594e9bc4a27e72d7961a7afe4250a502d1538d'>init: use pr_cont() when displaying rotator during ramdisk loading.Nicolas Schichan 2015-12-26init, Documentation: Remove ramdisk_blocksize mentionsRobert Elliott 2014-08-08initramfs: support initramfs that is bigger than 2GiBYinghai Lu 2014-01-25cramfs: take headers to fs/cramfsAl Viro 2013-11-13./Makefile: export initial ramdisk compression config optionP J P 2013-11-13init/do_mounts_rd.c: fix NULL pointer dereference while loading initramfsP J P 2012-05-31init: disable sparse checking of the mount.o source filesH Hartley Sweeten 2012-03-31new helper: ext2_image_size()Al Viro 2012-03-21init: Remove CONFIG_PPC_ISERIESStephen Rothwell 2011-11-02init/do_mounts_rd.c: fix ramdisk identification for padded cramfsNeil Armstrong 2011-03-22init: return proper error code in do_mounts_rd()Davidlohr Bueso 2010-10-26init: mark __user address space on string literalsNamhyung Kim 2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo 2009-01-14init: make initrd/initramfs decompression failure a KERN_EMERG eventH. Peter Anvin 2009-01-12bzip2/lzma: comprehensible error messages for missing decompressorH. Peter Anvin 2009-01-10Merge branch 'linus' into x86/setup-lzmaIngo Molnar 2009-01-08bzip2/lzma: centralize format detectionH. Peter Anvin 2009-01-05Squashfs: initrd supportPhillip Lougher 2009-01-04bzip2/lzma: use a table to search for initramfs compression formatsH. Peter Anvin 2009-01-04bzip2/lzma: config and initramfs support for bzip2/lzma decompressionAlain Knaff 2008-10-16identify_ramdisk_image(): correct typo about return value in commentGeert Uytterhoeven 2008-07-25inflate: refactor inflate malloc codeThomas Petazzoni 2008-07-25init/: delete hard-coded setting and testing of BUILD_CRAMDISKRobert P. J. Day 2008-04-28init: fix integer as NULL pointer warningsHarvey Harrison 2007-10-18sparse pointer use of zero as nullStephen Hemminger