Displaying 7 results from an estimated 7 matches for "freebit".
Did you mean:
free_it
2005 Sep 26
1
VOIP in Japan using Freebit
...VOIP provider in Japan?
No matter what I try, my REGISTER string kicks back one of 2 errors:
Got SIP response 481 "Call/Transaction Does Not Exist" back from x.x.x.x
or
Got SIP response 400 "Bad Request" back from x.x.x.x
My register string is as follows:
05075034132@ipphone2.freebit.ne.jp
I have tried the following also:
05075034132:mypass@ipphone2.freebit.ne.jp
05075034132@ipphone2.freebit.ne.jp/05075034132
05075034132:mypass@ipphone2.freebit.ne.jp/05075034132
myuserid:mypass@ipphone2.freebit.ne.jp
and variations of the above.
Is there any other information I could provide...
2004 Oct 20
1
i-node showing 100 % used whereas the partitionsare empty
...e
partitionsare empty
File a bug on this. I think I know what the issue is. File a bug on oss
so that I don't forget about it.
diff -r1.165.2.97 ocfsmain.c
1000,1001c1000,1001
< buf->f_files = (unsigned long) (numbits);
< buf->f_ffree = (unsigned long) (numbits) - freebits;
---
> buf->f_files = numbits;
> buf->f_ffree = freebits;
On Wed, 2004-10-13 at 16:32, Varghese Abraham wrote:
> Output df -i
> ------------------
> Filesystem Inodes IUsed IFree IUse% Mounted on
> /
> /dev/sde 348548 34819...
2009 Jan 16
2
[PATCH] ocfs2: return f_fsid info in ocfs2_statfs(), v4
...f --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 43ed113..c953933 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -1425,6 +1425,10 @@ static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_bavail = buf->f_bfree;
buf->f_files = numbits;
buf->f_ffree = freebits;
+ buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN)
+ & 0xFFFFFFFFUL;
+ buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN,
+ OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL;
brelse(bh);
--
Coly Li
SuSE Labs
2009 Jan 15
2
[PATCH] ocfs2: return f_fsid info in ocfs2_statfs()
...ff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 43ed113..fdab98a 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -1425,6 +1425,8 @@ static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_bavail = buf->f_bfree;
buf->f_files = numbits;
buf->f_ffree = freebits;
+ buf->f_fsid.val[0] = osb->uuid_hash & 0xFFFFFFFFUL;
+ buf->f_fsid.val[1] = 0;
brelse(bh);
--
Coly Li
SuSE Labs
2004 Oct 13
1
i-node showing 100 % used whereas the partitions are empty
Output df -i
------------------
Filesystem Inodes IUsed IFree IUse% Mounted on
/
/dev/sde 348548 348195 353 100% /ocfsa01
/dev/sdf 348548 348195 353 100% /ocfsa02
/dev/sdg 348548 348195 353 100% /ocfsa03
/dev/sdk 139410 138073 1337 100% /ocfsq01
Output df -kP
-----------------------
Filesystem
2009 Jan 15
0
[PATCH] ocfs2: return f_fsid info in ocfs2_statfs(), v2
...ff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 43ed113..fdab98a 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -1425,6 +1425,8 @@ static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_bavail = buf->f_bfree;
buf->f_files = numbits;
buf->f_ffree = freebits;
+ buf->f_fsid.val[0] = osb->uuid_hash & 0xFFFFFFFFUL;
+ buf->f_fsid.val[1] = 0;
brelse(bh);
--
Coly Li
SuSE Labs
2009 Jan 15
0
[PATCH] ocfs2: return f_fsid info in ocfs2_statfs(), v3
...ff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 43ed113..db837ee 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -1425,6 +1425,8 @@ static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_bavail = buf->f_bfree;
buf->f_files = numbits;
buf->f_ffree = freebits;
+ buf->f_fsid.val[0] = osb->uuid_hash & 0xFFFFFFFFUL;
+ buf->f_fsid.val[1] = (osb->uuid_hash >> 32) & 0xFFFFFFFFUL;
brelse(bh);
--
Coly Li
SuSE Labs