tmpfs: Quick token library to allow scalable retrieval of tokens from token jar
On Fri, Jun 11, 2010 at 04:54:25PM -0700, Andrew Morton wrote: spin_lock(&sbinfo->stat_lock); - if (sbinfo->free_blocks <= 1) { + if (percpu_counter_read(&sbinfo->free_blocks) <= 1) { spin_unlock(&sbinfo->stat_lock); Thanks for pointing me to look at this alternative ... 12 Jun 2010 03:56
btrfs: remove junk sb_mark_dirty call
Chris, could you please ack or nack this patch? On Sun, 2010-06-06 at 17:50 +0300, Artem Bityutskiy wrote: From: Artem Bityutskiy <Artem.Bityutskiy(a)nokia.com> BTRFS does not define '->write_super()' method, so it should not mark its superblock as dirty. This looks like some left-over. Signed-o... 12 Jun 2010 03:56
Use ktime_get() instead of sched_clock() for blkio cgroup stats.
* Divyesh Shah <dpshah(a)google.com> wrote: This will take care of the pre-emptive kernel issue and the unbounded TSC drift problem. We will lose resolution though in some cases. - blkg->stats.start_group_wait_time = sched_clock(); + blkg->stats.start_group_wait_time = ktime_to_ns(ktime_get()); Ugh! ... 12 Jun 2010 03:56
Open CWorthy Linux Libaries 6-11-2010 posted
On Fri, Jun 11, 2010 at 8:49 PM, Jeffrey Merkey <jeffmerkey(a)gmail.com> wrote: Download is at: http://cworthylinux.googlecode.com/files/cworthy-06-11-2010.tar.gz FIXES Corrected pthread concurrency issues with ncurses and ncursesw. �These (THE NCURSES LIBS THAT IS) libraries are not pthread safe ... 11 Jun 2010 23:38
[ANNOUNCE] Open CWorthy Linux Libaries 6-11-2010 posted
Download is at: http://cworthylinux.googlecode.com/files/cworthy-06-11-2010.tar.gz FIXES Corrected pthread concurrency issues with ncurses and ncursesw. These libraries are not pthread safe on linux 2.6.33 and later kernels and require mutexes for access to any of the screen refresh() calls or they will co... 11 Jun 2010 23:38
[PATCH 2/2] Use ktime_get() instead of sched_clock() for blkio cgroup stats.
This will take care of the pre-emptive kernel issue and the unbounded TSC drift problem. We will lose resolution though in some cases. Signed-off-by: Divyesh Shah <dpshah(a)google.com> --- block/blk-cgroup.c | 22 +++++++++++----------- include/linux/blkdev.h | 4 ++-- 2 files changed, 13 insertions(+),... 11 Jun 2010 23:38
[PATCH 1/2] Remove preempt_enable/disable calls around sched_clock()
calls in the block layer. This was a temporary fix added. Signed-off-by: Divyesh Shah <dpshah(a)google.com> --- include/linux/blkdev.h | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 09a8402..ebe788e 100644 --- a/include/linux/bl... 11 Jun 2010 23:38
gpio: msm7200a: Add gpiolib support for MSM chips.
On Fri, Jun 11, 2010 at 12:58:51PM -0700, Gregory Bean wrote: Add support for uniprocessor MSM chips whose TLMM/GPIO design is the same as the MSM7200A. This includes, but is not necessarily limited to, the: MSM7200A, MSM7x25, MSM7x27, MSM7x30, QSD8x50, QSD8x50A Change-Id: I748d0e09f6b762f1711cde3c27... 15 Jun 2010 17:38
[PATCH v2] xfs: Make fiemap works with sparse file.
In xfs_vn_fiemap, we set bvm_count to fi_extent_max + 1 and want to return fi_extent_max extents, but actually it won't work for a sparse file. The reason is that in xfs_getbmap we will calculate holes and set it in 'out', while out is malloced by bmv_count(fi_extent_max+1) which didn't consider holes. So in the w... 11 Jun 2010 22:32
[PATCH] EXTPROC, telnetd LINEMODE, revisited
Howard Chu wrote: Andi Kleen wrote: Howard Chu<hyc(a)symas.com> writes: It's been over 10 years since I looked at this last http://lkml.indiana.edu/hypermail/linux/kernel/9911.3/0650.html I would suggest you repost the patch. Looks like my email got posted twice already (oops). T... 11 Jun 2010 22:32