summaryrefslogtreecommitdiff
path: root/include/linux/seqlock.h
AgeCommit message (Collapse)Author
2003-07-10[PATCH] i_size atomic access: infrastructureAndrew Morton
From: Daniel McNeil <daniel@osdl.org> This adds a sequence counter only version of the reader/writer consistent mechanism to seqlock.h This is used in the second part of this patch give atomic access to i_size.
2003-02-05[PATCH] seqlock fix: read_seqretry_irqrestore()Andrew Morton
2003-02-04[PATCH] seqlock for xtimeStephen Hemminger
Add "seqlock" infrastructure for doing low-overhead optimistic reader locks (writer increments a sequence number, reader verifies that no writers came in during the critical region, and lots of careful memory barriers to take care of business). Make xtime/get_jiffies_64() use this new locking.