Shentino | 5 Mar 04:12
Picon

Progress

Just curious if there's been much in the line of news or progress on Tux3.

_______________________________________________
Tux3 mailing list
Tux3 <at> tux3.org
http://mailman.tux3.org/cgi-bin/mailman/listinfo/tux3
Lars Segerlund | 8 Sep 15:11
Picon
Gravatar

Tux 3 and BKL pushdown ...

 Hi,

 In Linux 2.6.36 there has been a push down of the BKL inte VFS and
similar systems in ordeer to get rid of it, (finally ).
 I was thinking about having a look at the tux3 driver, in order to
try to 'upgrade' it to the latest kernel.

 Is developement dead or just stalled ? Since the mailing list
certainly have been dead for a while !

 Also can tux3 be built as a kernel module for a running/existing
kernel binary ? It should be reasonable right ? There should be
nothing to change in the kernel outside the module ?

 / regards, Lars Segerlund.
X-Face
Picon

new patch for 2.6.34

Hallo,

This is a request to update the patches to the newest kernel.
the old 2.6.29 patch won't compile with the newest incarnation if the kernel

thx in av
Mario
Lars Segerlund | 12 Jan 12:57
Picon
Gravatar

Anything that needs to be done ?

 Tux 3 developement seems to have been on ice, is there anything that
could be done to get it going again ?

 If one was to start looking at some part whats most important ?
tolls/kernel integration/fs itself ?

 / regards, Lars Segerlund.
Balkrishnan V | 30 Nov 20:58
Picon

Issue:: Mounting TUX3 onto Linux machine

Hi,

I am trying to port TUX3 onto the ARM9 environment. Since this is the first time I am working on a file-system, I am trying to first mount the TUX3 on my linux machine.

I have followed the instructions given in this link: http://lkml.indiana.edu/hypermail/linux/kernel/0812.3/01600.html

But, I get stuck in this line: mount /dev/<testpartition> /mnt.  The machine hangs when I try to mount the TUX3 onto an external-pen-drive that I have mapped as /dev/sdb1/

The dmesg info taken after hard-rebooting my machine is:
..........
... sdb: sdb1
... sd 2:0:0:0: [sdb] Attached SCSI removable disk <<<after this the machine hangs>>>
..........

The mkfs command works fine before I try to mount, since I could find "tux3" listed under the "/proc/filesystems", though it does not say "nodev" against it. (i am not sure if this "nodev" not showing up is critical observation)

It will be great if anyone can help me in mounting TUX3 onto the linux machine.

TIA.

Warm Regards,

Balkrishnan




_______________________________________________
Tux3 mailing list
Tux3 <at> tux3.org
http://mailman.tux3.org/cgi-bin/mailman/listinfo/tux3
nandan yen | 16 Nov 18:18
Picon

help...

hello sir.....
              myself Nandan, i had completed my engineering in Computer Science. sir i am beginner to filesystem. i want to understand tux3 filesystem pl help me.
i want to understand the source. from where should i begin to trace the code pl help me sir.........

_______________________________________________
Tux3 mailing list
Tux3 <at> tux3.org
http://mailman.tux3.org/cgi-bin/mailman/listinfo/tux3
Kadianakis George | 15 Oct 01:29
Picon

Grasping Tux3 concepts as an FS newbie reading recommendations

Greetings,

I have zero knowledge as far as filesystems are concerned but I'm
interested in learning what Tux3 is and how it works.
I started digging into the Tux3 mailing list but, truth is, that I
couldn't follow most of the threads.
I also tried reading related articles like:
http://lwn.net/Articles/288896/
http://tux3.org/shapor-tux3/doc/design.html
but I didn't get far either.

Apart from basic and unrelated stuff (like how B-trees work, etc.),
can you propose me some basic reading on filesystem design so that I
can, at least, follow some basic discussion on the mailing list and
start checking out the code?

As a matter of fact, I think that publishing such a list on the
tux3.org would motivate many interested developers on 'joining' the
project.

Thanks :)
OGAWA Hirofumi | 16 Aug 00:21
Picon
Gravatar

Fix recent "tux3 mkfs" broken, and bugfixes

Hi,

Those patches fixes the recent broken things by atomic commit.  I hope
this patchset fixes all of those.

    - add tux_new_logmap() to create proper logmap (please review and check)
    - create ->logmap for some places
    - use defer btree root allocation for itable (with FIXME)

And also this cleans inode stuff up, and as usual, is including various
small bugfixes.

	static-http://userweb.kernel.org/~hirofumi/tux3/

Please review, and pull if ok.

Thanks.
--

-- 
OGAWA Hirofumi <hirofumi <at> mail.parknet.co.jp>
Aruna Medhekar | 6 Aug 14:02
Picon

Request for a project idea

Sir,
We are a group of 4 under graduate students who wish to complete a project in kvm.We have gone through your to-do lists but we did not find anything that we could do in a whole year.Can you please suggest something that might be possible for us to implement?

Thanking you,
Regards,

--
Shweta Shetty
Parul Nalavade
Aruna Medhekar
Ruta Gadkari

_______________________________________________
Tux3 mailing list
Tux3 <at> tux3.org
http://mailman.tux3.org/cgi-bin/mailman/listinfo/tux3
Michael Pattrick | 2 Aug 01:13
Gravatar

Question about 212c59f7565f

Suppress idiotic gcc warning for constant shift on 32 bit arch
       1--- a/user/utility.h	Mon Jun 29 09:55:28 2009 +0900
       2+++ b/user/utility.h	Mon Jun 29 10:10:21 2009 -0700
       3@@ -19,11 +19,10 @@ static __always_inline unsigned long __f
       4 {
       5 	int num = 0;
       6
       7-	if (BITS_PER_LONG == 64)  {
       8-		if ((word & 0xffffffff) == 0) {
       9-			num += 32;
      10-			word >>= 32;
      11-		}
      12+	if (BITS_PER_LONG == 64 && !(word & 0xffffffff)) {
      13+		num += 32;
      14+		word >>= 16; /* work around idiotic gcc warning */
      15+		word >>= 16; /* work around idiotic gcc warning */
      16 	}
      17 	if ((word & 0xffff) == 0) {
      18 		num += 16;

As BITS_PER_LONG is a macro, wouldn't it make more scene to include
that as a preprocess directive to get rid of the compiler warning?

Michael Pattrick
http://www.rhinovirus.org/math
Nandan Yen | 30 Jun 11:52
Picon

Updating my calendar

Hello

I am creating a birthday calendar for myself.  Can you please click on the link below and enter your birthday
for me?

http://www.birthdayalarm.com/bd2/85334167a876025448b1472437903c808070343d1386

Nandan

Gmane