aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ramfs
AgeCommit message (Expand)AuthorFilesLines
2006-10-01[PATCH] r/o bind mount prepwork: inc_nlink() helperDave Hansen1-2/+2
2006-10-01[PATCH] Streamline generic_file_* interfaces and filemap cleanupsBadari Pulavarty2-4/+8
2006-09-27[PATCH] inode-diet: Eliminate i_blksize from the inode structureTheodore Ts'o1-1/+0
2006-07-10[PATCH] NOMMU: Fix execution off of ramfs with mmap()David Howells1-2/+2
2006-06-28[PATCH] mark address_space_operations constChristoph Hellwig3-3/+3
2006-06-23[PATCH] VFS: Permit filesystem to override root dentry on mountDavid Howells1-6/+7
2006-03-28[PATCH] Make most file operations structs in fs/ constArjan van de Ven3-3/+3
2006-03-23[PATCH] fs/*/file.c: drop insane header dependenciesAlexey Dobriyan1-11/+0
2006-03-22[PATCH] mm: nommu use compound pagesNick Piggin1-2/+1
2006-03-06[PATCH] ramfs needs to update directory m/ctime on symlinkPeter Staubach1-0/+1
2006-02-24[PATCH] ramfs: update dir mtime and ctimeAndrew Morton1-0/+2
2006-01-06[PATCH] NOMMU: Provide shared-writable mmap support on ramfsDavid Howells5-22/+368
2005-04-16Linux-2.6.12-rc2v2.6.12-rc2Linus Torvalds2-0/+253
alue='30'>30space:mode:
authorPavel Skripkin <paskripkin@gmail.com>2021-07-09 17:58:29 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-25 14:36:20 +0200
commitf2a062fcfe1d6f1b0a86fa76ae21c277d65f4405 (patch)
tree9f9ca34664a5a29274560b1e9dcbe3d0a5420821
parentb560521eca03d0a2db6093a5a632cbdd0a0cf833 (diff)
downloadlinux-f2a062fcfe1d6f1b0a86fa76ae21c277d65f4405.tar.gz
net: ti: fix UAF in tlan_remove_one
commit 0336f8ffece62f882ab3012820965a786a983f70 upstream. priv is netdev private data and it cannot be used after free_netdev() call. Using priv after free_netdev() can cause UAF bug. Fix it by moving free_netdev() at the end of the function. Fixes: 1e0a8b13d355 ("tlan: cancel work at remove path") Signed-off-by: Pavel Skripkin <paskripkin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>