public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* RE: XFS to main kernel source
@ 2001-09-20 20:07 Gonyou, Austin
  2001-09-20 20:14 ` Alan Cox
  2001-09-20 20:29 ` Horst von Brand
  0 siblings, 2 replies; 37+ messages in thread
From: Gonyou, Austin @ 2001-09-20 20:07 UTC (permalink / raw)
  To: 'Alan Cox', narancs; +Cc: linux-xfs, linux-kernel

Won't there be a lot of changes which need to be made for it to go into 2.5
anyway though beyond just current development? Isn't 2.5 supposed to be
"radically" different?

-- 
Austin Gonyou
Systems Architect, CCNA
Coremetrics, Inc.
Phone: 512-796-9023
email: austin@coremetrics.com 

> -----Original Message-----
> From: Alan Cox [mailto:alan@lxorguk.ukuu.org.uk]
> Sent: Thursday, September 20, 2001 3:03 PM
> To: narancs@narancs.tii.matav.hu
> Cc: linux-xfs@oss.sgi.com; linux-kernel@vger.kernel.org
> Subject: Re: XFS to main kernel source
> 
> 
> > When will be the XFS patch integrated to main tree?
> > I'm really fed up with trying to get linux-2.4.9 + acXX or 
> preXX + xfs
> > together.
> 
> I can only speak for -ac but right now I have no plan to 
> tackle the merge
> except as an "its in 2.5, its ok in 2.5 backport" task
> 

^ permalink raw reply	[flat|nested] 37+ messages in thread
* [PATCH] Remove needless BKL from release functions
@ 2001-11-21 23:32 David C. Hansen
  2001-11-22 10:12 ` Oliver Neukum
  0 siblings, 1 reply; 37+ messages in thread
From: David C. Hansen @ 2001-11-21 23:32 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Linus Torvalds, Alexander Viro, Rick Lindsley

  The following is a patch which removes the BKL from quite a few 
drivers' release functions.  The release functions are already 
serialized in the VFS code by an atomic_t which guarantees that each 
function will be called only once, after all file descriptors have been 
closed.  In addition, in these drivers, the BKL was _only_ held in the 
release function and nowhere else in the driver where it might be needed.

Many of these patches simply remove the BKL from the file.  This causes 
no harm because the BKL was not really protecting anything, anyway.  
Other patches try to actually fix the locking.  Some do this by making 
use of atomic operations with the atomic_* functions, or the 
(test|set)_bit functions.  Most of these patches replace uses of normal 
integers which were used to keep open counts in the drivers.  In other 
some cases, a spinlock was added when the atomic operations could not 
guarantee proper serialization by themselves.  And, in very few cases, 
the existing locking was extended to protect more things.  These cases 
are very uncommon because locking is very uncommon in most of these drivers.

Special care has been taken not to introduce more locking issues into 
the drivers (do no harm). They're available as one big patch which is 
against 2.4.14.  The big patch is about 50k, so, instead of attaching 
it, here is a link: http://lse.sourceforge.net/lockhier/patches/bkl.rollup
Here is documentation describing some of the patches and other locking 
issues in the drivers: http://lse.sourceforge.net/lockhier/
The patch applies against 2.4.14.

--
David C. Hansen
haveblue@us.ibm.com



^ permalink raw reply	[flat|nested] 37+ messages in thread
[parent not found: <adilger@turbolabs.com>]
* XFS to main kernel source
@ 2001-09-20 18:12 Narancs v1
  2001-09-20 20:02 ` Alan Cox
  0 siblings, 1 reply; 37+ messages in thread
From: Narancs v1 @ 2001-09-20 18:12 UTC (permalink / raw)
  To: linux-xfs; +Cc: linux-kernel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi all!

First of all, I want to thank you the great job you do to Linux!
Linux is a great OS/kernel and XFS is my favorite FS since I tried it.

Problems:

When will be the XFS patch integrated to main tree?

I'm really fed up with trying to get linux-2.4.9 + acXX or preXX + xfs
together.

I'm using XFS from notebooks to DB servers and it's really hard to compile
a good and fresh kernel.

Now I currently have some machines like 2.4.10-pre-xfs and so on.
I want to have some features from -ac tree and/or the latest pre kernels,
but patching fails, I have to do things by hand with the .rej files, and I
can make mistakes so I have a kernel in the notebook which handles the
ps/2 mouse in X very bad (the cursor jumps on big use I/O or CPU, maybe
sy with the interrupts is wrong.)

I know it takes time and resources, but if once XFS is in the main tree as
Reiser is in (maybe other folks wants ext3 to get in too) -
this problem will be eleminated, and I could use ie. the usb/SCSI module
hp scanner with xfs and dvd playback too.

thanks

 -------------------------
Narancs v1
IT Security Administrator

"Security of information is an illusion.
What is in one's mind gets into the collective consciousness (akasha),
so that can be read with meditation ;-) You don't have to hack.
Just 'remember'! You're the one."

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAjuqMaMACgkQGp+ylEhMCIU1ywCfT1PRsEKeULNyptmQqMawsY9Q
d3AAnAzHagKVkiX1JPjfebuIUicC+Mr/
=kvPu
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2001-11-26 19:56 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-20 20:07 XFS to main kernel source Gonyou, Austin
2001-09-20 20:14 ` Alan Cox
2001-09-20 20:16   ` Steve Lord
2001-09-20 20:25     ` Alan Cox
2001-09-20 20:26     ` Christoph Hellwig
2001-09-20 21:31       ` Steve Lord
2001-09-21  3:12         ` Andreas Dilger
2001-09-21  3:25           ` Steve Lord
2001-09-21  4:42             ` Nathan Scott
2001-09-21  5:58         ` Christoph Hellwig
2001-09-21  8:40           ` Narancs v1
2001-09-21 14:19         ` Alexander Viro
2001-09-21 14:45           ` Steve Lord
2001-09-20 20:40     ` Alexander Viro
2001-09-21 18:03       ` Steve Lord
2001-09-20 20:29 ` Horst von Brand
2001-09-20 20:50   ` Alan Cox
  -- strict thread matches above, loose matches on Subject: below --
2001-11-21 23:32 [PATCH] Remove needless BKL from release functions David C. Hansen
2001-11-22 10:12 ` Oliver Neukum
2001-11-22 12:11   ` Christoph Hellwig
2001-11-22 12:30     ` Horst von Brand
2001-11-22 13:05       ` Christoph Hellwig
2001-11-23  9:44       ` Rick Lindsley
2001-11-23 10:10         ` Oliver.Neukum
2001-11-23 10:47           ` Christoph Hellwig
2001-11-23 11:24             ` Oliver Neukum
2001-11-26 17:46             ` David C. Hansen
2001-11-26 19:41               ` Flavio Stanchina
2001-11-26 19:53                 ` David C. Hansen
2001-11-23 12:08           ` Rick Lindsley
     [not found] <adilger@turbolabs.com>
2001-11-06 20:04 ` [PATCH] lp.c, eexpress.c jiffies cleanup Tim Schmielau
2001-11-06 21:15   ` Andreas Dilger
2001-11-06 21:37     ` Philip Blundell
2001-11-07  0:10       ` Andreas Dilger
2001-11-06 23:58         ` Tim Hockin
2001-09-20 18:12 XFS to main kernel source Narancs v1
2001-09-20 20:02 ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox