Re: [PATCH] lib/sort.c, 2.6.22 kernel

2007-09-25 Thread Matt Mackall
On Tue, Sep 25, 2007 at 04:52:47PM +0200, Jan Engelhardt wrote: > > On Aug 8 2007 16:19, Subbaiah Venkata wrote: > > > >Hello, I fixed and tested a small bug in lib/sort.c file, heap sort > >function. > > > >The fix avoids unnecessary swap of contents when i is 0 (saves few > >loads and stores), w

Re: [PATCH] lib/sort.c, 2.6.22 kernel

2007-09-25 Thread Jan Engelhardt
On Aug 8 2007 16:19, Subbaiah Venkata wrote: > >Hello, I fixed and tested a small bug in lib/sort.c file, heap sort >function. > >The fix avoids unnecessary swap of contents when i is 0 (saves few >loads and stores), which happens every time sort function is called. >I felt the fix is worth bringi

[PATCH] lib/sort.c, 2.6.22 kernel

2007-08-08 Thread Subbaiah Venkata
Hello, I fixed and tested a small bug in lib/sort.c file, heap sort function. The fix avoids unnecessary swap of contents when i is 0 (saves few loads and stores), which happens every time sort function is called. I felt the fix is worth bringing it to your attention given the importance and fre