Displaying 9 results from an estimated 9 matches for "sb3".
Did you mean:
sb
2010 Jun 22
7
lnet infiniband config
Hi all,
I''m getting my feet wet in the infiniband lake and of course I run into
some problems.
It would seem I got the compilation part of sles11 kernel 2.6.27 +
Lustre 1.8.3 + ofed 1.4.2 right, because it allows me to see and use the
infiniband fabric, and because ko2iblnd loads without any complaints.
In /etc/modprobe.d/lustre (this is a Debian system, hence this subdir of
2011 Mar 21
0
Contents of theora digest...
...|SB13 |SB14 |SB15 |
|--->------>---------->------>------>------------>---->--
|DCs |DCs |DCs |DCs |DCs |DCs |DCs |DCs |
---------------------------------------------------------
|Y |Y |Y |Y |U |U |V |V |
|SB0 |SB1 |SB2 |SB3 |SB4 |SB5 |SB6 |SB7 |
|--->------>---------->------>------>------------>---->--
|DCs |DCs |DCs |DCs |DCs |DCs |DCs |DCs |
---------------------------------------------------------
Pass extracted DC to Huffman blocks, results save in buffer memory:
DD...
2007 Apr 03
2
Efficiency
Hi Gregory,
GM> Flac decode is VERY fast:
GM> http://web.inter.nl.net/users/hvdh/lossless/lossless.htm
Thank you for the link. Although I switched to flac for other reasons,
these data appear to support my switch, given the hardware limitations I
have. As I mentioned, I use a 400 mhz laptop in my office, and at home a
qnap ts-101 running slimserver software. While quite usable, neither
2012 May 31
2
Loop question
...(Lx) with 5 Lb, and 5 Lw variables. I want to
create several variables according to the loop presented below (data
attached).
Lx <- read.csv("Lx.csv", header=T, sep=",")
for (i in 1:20) {
Lx$sb1[i] <- Lx$Lb1[i+1]/Lx$Lb1[i]
Lx$sb2[i] <- Lx$Lb2[i+1]/Lx$Lb2[i]
Lx$sb3[i] <- Lx$Lb3[i+1]/Lx$Lb3[i]
Lx$sb4[i] <- Lx$Lb4[i+1]/Lx$Lb4[i]
Lx$sb5[i] <- Lx$Lb5[i+1]/Lx$Lb5[i]
Lx$sw1[i] <- Lx$Lw1[i+1]/Lx$Lw1[i]
Lx$sw2[i] <- Lx$Lw2[i+1]/Lx$Lw2[i]
Lx$sw3[i] <- Lx$Lw3[i+1]/Lx$Lw3[i]
Lx$sw4[i] <- Lx$Lw4[i+1]/Lx$Lw4[i]
Lx$sw5[i] <- Lx...
2013 Jul 22
1
[PATCH 1/1 v2] Add UFS1/2 support to Extlinux installer.
...(sectmap(fd, sectp, nsect)) {
perror("bmap");
exit(1);
}
- } else if (fs_type == BTRFS) {
+ } else if (fs_type == BTRFS || fs_type == UFS2) {
int i;
sector_t *sp = sectp;
@@ -342,6 +346,7 @@ int install_bootblock(int fd, const char *device)
struct fat_boot_sector sb3;
struct ntfs_boot_sector sb4;
xfs_sb_t sb5;
+ struct ufs_super_block sb6;
bool ok = false;
if (fs_type == EXT2) {
@@ -395,11 +400,25 @@ int install_bootblock(int fd, const char *device)
ok = true;
}
+ } else if (fs_type == UFS1 || fs_type == UFS2) {
+ uint32_t...
2013 Jul 12
2
[PATCH 001/001] Add UFS1/2 support to Extlinux installer.
...(sectmap(fd, sectp, nsect)) {
perror("bmap");
exit(1);
}
- } else if (fs_type == BTRFS) {
+ } else if (fs_type == BTRFS || fs_type == UFS2) {
int i;
sector_t *sp = sectp;
@@ -342,6 +346,7 @@ int install_bootblock(int fd, const char *device)
struct fat_boot_sector sb3;
struct ntfs_boot_sector sb4;
xfs_sb_t sb5;
+ struct ufs_super_block sb6;
bool ok = false;
if (fs_type == EXT2) {
@@ -395,11 +400,25 @@ int install_bootblock(int fd, const char *device)
ok = true;
}
+ } else if (fs_type == UFS1 || fs_type == UFS2) {
+ uint32_t...
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Wrote the documentation below. I think it would be good to push the doc to
the wiki as soon as the UFS support gets merged.
Unix Fast File System (UFS/FFS) 1/2 on Syslinux - (usage/install)
-----
There is a confusion about the name of this file system, then I decided to
contact the author who replied:
"The name has always been
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Change since v1:
* Fix bug on dentry structure (thank you specification; btw, sarcasm), and
consequently a bug on ufs_readdir.
* Add readlink support (applied tests for symlinks whose destionation path
were stored in blk pointers and the file itself).
* Several improvements.
Wrote the documentation below. I think it would be good to
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...S) {
+ if (fs_type == EXT2 || fs_type == VFAT || fs_type == NTFS ||
+ fs_type == XFS) {
if (sectmap(fd, sectp, nsect)) {
perror("bmap");
exit(1);
@@ -328,6 +341,7 @@ int install_bootblock(int fd, const char *device)
struct btrfs_super_block sb2;
struct fat_boot_sector sb3;
struct ntfs_boot_sector sb4;
+ xfs_sb_t sb5;
bool ok = false;
if (fs_type == EXT2) {
@@ -335,6 +349,7 @@ int install_bootblock(int fd, const char *device)
perror("reading superblock");
return 1;
}
+
if (sb.s_magic == EXT2_SUPER_MAGIC)
ok = true;
} el...