aboutsummaryrefslogtreecommitdiffstats
path: root/commit.h
diff options
context:
space:
mode:
authorAlexander Shopov <ash@kambanaria.org>2021-11-12 08:00:54 +0100
committerAlexander Shopov <ash@kambanaria.org>2021-11-12 19:24:16 +0100
commit5f9383614300869aff6c3c3968155f74b0ce6a2b (patch)
treee9ae1ed0af1a4347a16099a6c160a81df18edc49 /commit.h
parentl10n: sv.po: Update Swedish translation (5211t0f0) (diff)
downloadgit-5f9383614300869aff6c3c3968155f74b0ce6a2b.tar.gz
git-5f9383614300869aff6c3c3968155f74b0ce6a2b.zip
l10n: bg.po: Updated Bulgarian translation (5211t)
Signed-off-by: Alexander Shopov <ash@kambanaria.org>
Diffstat (limited to 'commit.h')
0 files changed, 0 insertions, 0 deletions
partAlexander Viro5-9/+109 2002-10-28[PATCH] IO counters - per-partition partAlexander Viro3-1/+29 This chunk and the next one basically do equivalent of sard in the right way - counters are exported per-disk in driverfs, as attributes of disk or partition nodes. 2002-10-28[PATCH] dasd fixesAlexander Viro2-27/+2 2002-10-28[PATCH] block_device_operations always picked from gendiskAlexander Viro12-224/+142 * do_open() cleaned up * we always pick block_device_operations from gendisk->fops now * register_blkdev() just stores the name of driver, nothing more * ->bd_op and ->bd_queue removed - we have that in gendisk * get_blkfops() is gone 2002-10-28[PATCH] saner initialization order in IDE (gendisks allocated slightly earlier)Alexander Viro4-73/+76 * we move allocation of gendisks in ide-probe to the moment when queues are set up, so everything that wants to feed requests in one of IDE queues can safely set ->rq_disk 2002-10-28[PATCH] removed a bunch of gratuitous kdev_t usesAlexander Viro4-25/+5 2002-10-28[PATCH] presto cache keyed by superblock instead of kdev_tAlexander Viro4-19/+15 2002-10-28[PATCH] r/o state moved to gendisksAlexander Viro15-63/+58 2002-10-28[PATCH] randomness made per-diskAlexander Viro10-32/+24 * per-major array eliminated, every disk is a separate source of randomness 2002-10-28[PATCH] removed a bunch of gratuitous ->rq_dev usesAlexander Viro6-35/+12 2002-10-28[PATCH] blk_dev[] is goneAlexander Viro16-109/+54 * remove blk_dev[] * removed BLK_DEFAULT_QUEUE * moved definition of CURRENT into drivers that used it * removed definition of QUEUE from headers 2002-10-28[PATCH] mtdblock_ro fixes (based on patch from rmk)Alexander Viro1-165/+172 * compile fixes * switched to private queue * set ->queue 2002-10-28[PATCH] swim3.c cleanupAlexander Viro1-51/+49 * killed uses of CURRENT and QUEUE 2002-10-28[PATCH] dasd.cAlexander Viro2-29/+5 * switched to private queues * set ->queue 2002-10-28[PATCH] ftl.c fixAlexander Viro1-1/+1 * killed remaining CURRENT 2002-10-28[PATCH] xd.cAlexander Viro2-67/+55 * switched to private queues * set ->queue and ->private_data * switched to use of ->bd_disk and ->rq_disk * cleaned up 2002-10-28[PATCH] hd.cAlexander Viro1-128/+124 * switched to private queues * set ->queue and ->private_data * switched to use of ->bd_disk and ->rq_disk * folded recalibrate[] and special_op[] into hd_info[] * switched to passing pointers instead of indices * cleaned up 2002-10-28[PATCH] mtdblock (based on a patch from rmk)Alexander Viro1-39/+51 * switched to private queues * set ->queue 2002-10-28[PATCH] nftlAlexander Viro1-63/+39 * switched to private queues * set ->queue and ->private_data * switched to use of ->bd_disk and ->rq_disk * fixed the problem with request_module() from open() * cleaned up 2002-10-28[PATCH] ps2esdiAlexander Viro1-78/+67 * switched to private queues * set ->queue and ->private_data * switched to use of ->bd_disk and ->rq_disk * somewhat cleaned up 2002-10-28[PATCH] xpramAlexander Viro1-11/+9 * switched to private queues * set ->queue and ->private_data * switched to use of ->bd_disk 2002-10-28[PATCH] z2ramAlexander Viro1-49/+33 * switched to private queues * set ->queue * cleaned up 2002-10-28[PATCH] rdAlexander Viro1-69/+37 * switched to private queues * set ->queue * cleaned up 2002-10-28[PATCH] A couple of compile fixesAlexander Viro2-3/+3 2002-10-28patch up scsi mismergeJames Bottomley4-5/+21 2002-10-28ia-64 kcore changes broke i386. Guess who gets the shaft?Linus Torvalds1-4/+0 2002-10-28[PATCH] sparc64 read_barrier_depends fixAndrew Morton1-0/+3 From Dipankar I missed sparc64 when I broke up read_barrier_depends in -mm and sent to Linus. Please apply this to your tree until Linus is back and I can fix it. 2002-10-28[PATCH] RCU idle detection fixAndrew Morton1-1/+2 Patch from Dipankar Sarma <dipankar@in.ibm.com> There is a check in RCU for idle CPUs which signifies quiescent state (and hence no reference to RCU protected data) which was broken when interrupt counters were changed to use thread_info->preempt_count. Martin's 32 CPU machine with many idle CPUs was not completing any RCU grace period because RCU was forever waiting for idle CPUs to context switch. Had the idle check worked, this would not have happened. With no RCU happening, the dentries were getting "freed" (dentry stats showing that) but not getting returned to slab. This would not show up in systems that are generally busy as context switches then would happen in all CPUs and the per-CPU quiescent state counter would get incremented during context switch. 2002-10-28[PATCH] fix failure to write ext2 indirects under loadAndrew Morton1-4/+4 This patch fixes a filesystem corrupting bug, present in 2.5.41 through 2.5.44. It can cause ext2 indirect blocks to not be written out. A fsck will fix it up. Under heavy memory pressure a PF_MEMALLOC task attemtps to write out a blockdev page whose buffers are already under writeback and which were dirtied while under writeback. The writepage call returns -EAGAIN but because the caller is PF_MEMALLOC, the page was not being marked dirty again. The page sits on mapping->clean_pages for ever and it not written out. The fix is to mark that page dirty again for all callers, regardless of PF_MEMALLOC state. 2002-10-28kbuild: Fix a "make -j<N>" warningKai Germaschewski1-1/+1 2002-10-28Correct sd.c compile by adding } lost in mergeJames Bottomley1-0/+1 2002-10-28kbuild: Allow UTS_MACHINE to be different from $(ARCH)Kai Germaschewski2-2/+4 parisc builds parisc / parisc64 from arch/parisc, but wants different strings for uname -m, which it can now provide by overwriting UTS_MACHINE in arch/parisc/Makefile. (Matthew Wilcox) 2002-10-27[PATCH] DVB drivers AV7110 (Fujitsu, Nova etc)Alan Cox21-0/+44044 2002-10-28[PATCH] ips queue depths 2.5.44David Jeffery1-5/+5 After way to long of a delay, here's a patch for the queue depths in the ips driver. And this patch also shuts up the compiler warnings. 2002-10-27[PATCH] updated ver_linuxAlan Cox1-3/+13 2002-10-27[PATCH] mempool helpers used by device mapperAlan Cox2-0/+24 2002-10-27[PATCH] IDE - Andre can't count 8)Alan Cox1-3/+3 2002-10-27[PATCH] update wan drivers to new saner ioctlsAlan Cox16-65/+104 2002-10-27[PATCH] Digital TV frameworkAlan Cox32-1/+7718 DVB is very different in its need to analogue video. This merges the cleaned up version of the DVB framework from Convergence, which has been around for a couple of years. 2002-10-27[PATCH] Device Mapper, with updatesAlan Cox12-1/+3647 This is the device mapper with Joe's updates applied and in -ac for a bit 2002-10-27[PATCH] drag ATM into the 21st century , part 1Alan Cox5-218/+284 2002-10-27[PATCH] fix atm firestream warnings with new gccAlan Cox1-0/+1