aboutsummaryrefslogtreecommitdiffstats
path: root/net/unix/garbage.c
AgeCommit message (Expand)AuthorFilesLines
11 daysaf_unix: Add dead flag to struct scm_fp_list.Kuniyuki Iwashima1-4/+10
2024-04-23af_unix: Don't access successor in unix_del_edges() during GC.Kuniyuki Iwashima1-5/+12
2024-04-16af_unix: Try not to hold unix_gc_lock during accept().Kuniyuki Iwashima1-4/+16
2024-04-03af_unix: Remove lock dance in unix_peek_fds().Kuniyuki Iwashima1-1/+1
2024-03-29af_unix: Replace garbage collection algorithm.Kuniyuki Iwashima1-238/+64
2024-03-29af_unix: Detect dead SCC.Kuniyuki Iwashima1-1/+43
2024-03-29af_unix: Assign a unique index to SCC.Kuniyuki Iwashima1-14/+15
2024-03-29af_unix: Avoid Tarjan's algorithm if unnecessary.Kuniyuki Iwashima1-1/+27
2024-03-29af_unix: Skip GC if no cycle exists.Kuniyuki Iwashima1-1/+47
2024-03-29af_unix: Save O(n) setup of Tarjan's algo.Kuniyuki Iwashima1-11/+15
2024-03-29af_unix: Fix up unix_edge.successor for embryo socket.Kuniyuki Iwashima1-1/+19
2024-03-29af_unix: Detect Strongly Connected Components.Kuniyuki Iwashima1-2/+44
2024-03-29af_unix: Iterate all vertices by DFS.Kuniyuki Iwashima1-0/+74
2024-03-29af_unix: Bulk update unix_tot_inflight/unix_inflight when queuing skb.Kuniyuki Iwashima1-11/+7
2024-03-29af_unix: Link struct unix_edge when queuing skb.Kuniyuki Iwashima1-1/+89
2024-03-29af_unix: Allocate struct unix_edge for each inflight AF_UNIX fd.Kuniyuki Iwashima1-0/+6
2024-03-29af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd.Kuniyuki Iwashima1-0/+38
2024-02-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-13/+9
2024-02-21af_unix: Drop oob_skb ref before purging queue in GC.Kuniyuki Iwashima1-13/+9
2024-02-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+4
2024-02-13af_unix: Fix task hung while purging oob_skb in GC.Kuniyuki Iwashima1-3/+4
2024-02-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-0/+11
2024-02-06af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC.Kuniyuki Iwashima1-0/+11
2024-01-31af_unix: Remove CONFIG_UNIX_SCM.Kuniyuki Iwashima1-2/+71
2024-01-31af_unix: Remove io_uring code for GC.Kuniyuki Iwashima1-23/+2
2024-01-31af_unix: Replace BUG_ON() with WARN_ON_ONCE().Kuniyuki Iwashima1-4/+4
2024-01-26af_unix: Try to run GC async.Kuniyuki Iwashima1-1/+9
2024-01-26af_unix: Run GC on only one CPU.Kuniyuki Iwashima1-27/+27
2024-01-26af_unix: Return struct unix_sock from unix_get_socket().Kuniyuki Iwashima1-12/+7
2024-01-26af_unix: Do not use atomic ops for unix_sk(sk)->inflight.Kuniyuki Iwashima1-9/+8
2024-01-26af_unix: Annotate data-race of gc_in_progress in wait_for_unix_gc().Kuniyuki Iwashima1-1/+1
2023-03-08net: reclaim skb->scm_io_uring bitEric Dumazet1-1/+1
2022-10-12io_uring/af_unix: defer registered files gc to io_uring releasePavel Begunkov1-0/+20
2022-01-14af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progressEric Dumazet1-3/+11
2019-05-24treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 62Thomas Gleixner1-6/+1
2019-02-28net: split out functions related to registering inflight socket filesJens Axboe1-69/+2
2019-02-28Add io_uring IO interfaceJens Axboe1-0/+3
2017-03-21net: unix: properly re-increment inflight counter of GC discarded candidatesAndrey Ulanov1-8/+9
2016-02-08unix: correctly track in-flight fds in sending process user_structHannes Frederic Sowa1-4/+4
2016-01-11unix: properly account for FDs passed over unix socketswilly tarreau1-5/+8
2015-04-23net: unix: garbage: fixed several comment and whitespace style issuesJason Eastman1-42/+28
2014-10-07af_unix: remove 0 assignment on staticFabian Frederick1-1/+1
2013-05-01af_unix: fix a fatal race with bit fieldsEric Dumazet1-6/+6
2013-02-22new helper: file_inode(file)Al Viro1-1/+1
2011-03-15Allow passing O_PATH descriptors via SCM_RIGHTS datagramsAl Viro1-1/+1
2010-11-29af_unix: limit recursion levelEric Dumazet1-1/+1
2010-11-24af_unix: limit unix_tot_inflightEric Dumazet1-0/+7
2010-05-03unix/garbage: kill copy of the skb queue walkerIlpo Järvinen1-11/+2
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo1-1/+0
2008-12-02Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller1-3/+10
2008-11-26net: Fix soft lockups/OOM issues w/ unix garbage collectordann frazier1-3/+10
2008-11-11Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller1-12/+37
2008-11-09net: unix: fix inflight counting bug in garbage collectorMiklos Szeredi1-12/+37
2008-11-01af_unix: clean up net/unix/af_unix.c garbage.c sysctl_net_unix.cJianjun Kong1-6/+6
2008-07-26[PATCH] f_count may wrap aroundAl Viro1-9/+9
2007-11-10[AF_UNIX]: Convert socks to unix_socks in scan_inflight, not in callbacksPavel Emelyanov1-11/+9
2007-11-10[AF_UNIX]: Make unix_tot_inflight counter non-atomicPavel Emelyanov1-3/+3
2007-07-11[AF_UNIX]: Rewrite garbage collector, fixes race.Miklos Szeredi1-139/+186
2007-02-14[PATCH] remove many unneeded #includes of sched.hTim Schmielau1-1/+0
2007-02-10[NET] UNIX: Fix whitespace errors.YOSHIFUJI Hideaki1-7/+7
2006-12-08[PATCH] struct path: convert unixJosef Sipek1-1/+1
2006-03-20[NET] sem2mutex: net/Arjan van de Ven1-3/+4
2006-01-03[AF_UNIX]: Use spinlock for unix_table_lockDavid S. Miller1-2/+2
2005-08-29[TCP]: Move the tcp sock states to net/tcp_states.hArnaldo Carvalho de Melo1-1/+1
2005-08-29[NET]: Kill skb->listDavid S. Miller1-6/+6
2005-04-16Linux-2.6.12-rc2v2.6.12-rc2Linus Torvalds1-0/+312