* Re: [openib-general] Re: [PATCH 07/16] ehca: interrupt handling routines
From: Shirley Ma @ 2006-05-09 18:44 UTC (permalink / raw)
To: Roland Dreier
Cc: linux-kernel, openib-general, linuxppc-dev, Christoph Raisch,
Hoang-Nam Nguyen, Marcus Eder, openib-general-bounces,
Michael S. Tsirkin
In-Reply-To: <adar733avvs.fsf@cisco.com>
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
Roland Dreier <rdreier@cisco.com> wrote on 05/09/2006 11:36:07 AM:
> But there's no reason why the two threads can't be pinned to different
> CPUs or given exclusive CPU masks, exactly the same way that ehca
> implements it.
>
> - R.
I could try this. Let's see how much latency increase there.
Shirley Ma
IBM Linux Technology Center
15300 SW Koll Parkway
Beaverton, OR 97006-6063
Phone(Fax): (503) 578-7638
[-- Attachment #2: Type: text/html, Size: 595 bytes --]
^ permalink raw reply
* IMAP_ADDR on PPC 8xx
From: Kenneth Poole @ 2006-05-09 18:38 UTC (permalink / raw)
To: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 1749 bytes --]
In our build, (currently based on 2.6.14.3) we define IMAP_ADDR as
follows:
#define IMAP_ADDR (((bd_t *)__res)->bi_immr_base)
With very few exceptions, nearly all driver code that dereferences
IMAP_ADDR can be used unchanged and the IMMR value is always the value
passed up from the bootloader. We build one image that runs on multiple
platforms and some platforms place the IMMR address space at different
addresses than others. It's not a constant.
Regardless, I see little reason to ioremap() the IMMR address. The MMU
is set up in such a way that IMMR based locations can be accessed
directly.
Ken Poole, MRV Communications, Inc.
> In a related vein, as I alluded to in my previous email, there has
been
> previous discussion on this list about the fact that it is frowned
upon
> for device drivers to directly dereference IMAP_ADDR. Instead, I've
> seen a recommendation that each individual driver perform an
io_remap()
> operation on IMAP_ADDR and save the resulting kernel virtual address
in
> a driver-specific data structure. Is this a universally-accepted
> viewpoint? Is this something that the community agrees "should be
> fixed" and we're just waiting for someone (like me) to volunteer to
fix
> all the drivers?
> Or are there arguments in favor of keeping the direct IMAP_ADDR
> dereferences? For example, if each driver performs its own separate
> io_remap(), doesn't that have potentially negative consequences on the
> VM system for some PPC implementations (e.g. increased contention for
> TLB entries)?
> Are these issues addressed by or otherwise impacted by other ongoing
PPC
> Linux work such as the "ppc" + "ppc64" --> "powerpc" effort / "flat
> device tree" stuff???
[-- Attachment #2: Type: text/html, Size: 6931 bytes --]
^ permalink raw reply
* Re: [openib-general] Re: [PATCH 07/16] ehca: interrupt handling routines
From: Roland Dreier @ 2006-05-09 18:36 UTC (permalink / raw)
To: Shirley Ma
Cc: Michael S. Tsirkin, linux-kernel, openib-general, linuxppc-dev,
Christoph Raisch, Hoang-Nam Nguyen, Marcus Eder,
openib-general-bounces
In-Reply-To: <OF22D08323.20D303C1-ON87257169.0063C980-88257169.006A41AB@us.ibm.com>
Shirley> I have done some patch like that on top of splitting
Shirley> CQ. The problem I found that hardware interrupt favors
Shirley> one CPU. Most of the time these two threads are running
Shirley> on the same cpu according to my debug output. You can
Shirley> easily find out by cat /proc/interrupts and
Shirley> /proc/irq/XXX/smp_affinity. ehca has distributed
Shirley> interrupts evenly on SMP, so it gets the benefits of two
Shirley> threads, and gains much better throughputs.
Yes, an interrupt will likely be delivered to one CPU.
But there's no reason why the two threads can't be pinned to different
CPUs or given exclusive CPU masks, exactly the same way that ehca
implements it.
- R.
^ permalink raw reply
* Re: [openib-general] Re: [PATCH 07/16] ehca: interrupt handling routines
From: Roland Dreier @ 2006-05-09 18:36 UTC (permalink / raw)
To: Shirley Ma
Cc: linux-kernel, openib-general, linuxppc-dev, Christoph Raisch,
Hoang-Nam Nguyen, Marcus Eder, openib-general-bounces,
Michael S. Tsirkin
In-Reply-To: <OF22D08323.20D303C1-ON87257169.0063C980-88257169.006A41AB@us.ibm.com>
Shirley> I have done some patch like that on top of splitting
Shirley> CQ. The problem I found that hardware interrupt favors
Shirley> one CPU. Most of the time these two threads are running
Shirley> on the same cpu according to my debug output. You can
Shirley> easily find out by cat /proc/interrupts and
Shirley> /proc/irq/XXX/smp_affinity. ehca has distributed
Shirley> interrupts evenly on SMP, so it gets the benefits of two
Shirley> threads, and gains much better throughputs.
Yes, an interrupt will likely be delivered to one CPU.
But there's no reason why the two threads can't be pinned to different
CPUs or given exclusive CPU masks, exactly the same way that ehca
implements it.
- R.
^ permalink raw reply
* [RFC PATCH] kbuild support for %.symtypes files
From: Andreas Gruenbacher @ 2006-05-09 18:37 UTC (permalink / raw)
To: linux-kernel, Sam Ravnborg; +Cc: Jon Masters
[-- Attachment #1: Type: text/plain, Size: 1705 bytes --]
Hello,
here is a patch that adds a new -T option to genksyms for generating dumps of
the type definition that makes up the symbol version hashes. This allows to
trace modversion changes back to what caused them. The dump format is the
name of the type defined, followed by its definition (which is almost C):
s#list_head struct list_head { s#list_head * next , * prev ; }
The s#, u#, e#, and t# prefixes stand for struct, union, enum, and typedef.
The exported symbols do not define types, and thus do not have an x# prefix:
nfs4_acl_get_whotype int nfs4_acl_get_whotype ( char * , t#u32 )
The symbol type defintion of a single file can be generated with:
make fs/jbd/journal.symtypes
If KBUILD_SYMTYPES is defined, all the *.symtypes of all object files that
export symbols are generated.
The single *.symtypes files can be combined into a single file after a kernel
build with a script like the following:
for f in $(find -name '*.symtypes' | sort); do
f=${f#./}
echo "/* ${f%.symtypes}.o */"
cat $f
echo
done \
| sed -e '\:UNKNOWN:d' \
-e 's:[,;] }:}:g' \
-e 's:\([[({]\) :\1:g' \
-e 's: \([])},;]\):\1:g' \
-e 's: $::' \
$f \
| awk '
/^.#/ { if (defined[$1] == $0) {
print $1
next
}
defined[$1] = $0
}
{ print }
'
When the kernel ABI changes, diffing individual *.symtype files, or the
combined files, against each other will show which symbol changes caused the
ABI changes. This can save a tremendous amount of time.
I've been discussing this patch with Jon, and I think the patch makes more
sense upstream than in a vendor kernel only. Comments?
Thanks,
Andreas
[-- Attachment #2: symtypes.diff --]
[-- Type: text/x-diff, Size: 7129 bytes --]
Dump the types that make up modversions
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Index: linux-2.6.16/scripts/Makefile.build
===================================================================
--- linux-2.6.16.orig/scripts/Makefile.build
+++ linux-2.6.16/scripts/Makefile.build
@@ -140,6 +140,15 @@ cmd_cc_i_c = $(CPP) $(c_flags) -
%.i: %.c FORCE
$(call if_changed_dep,cc_i_c)
+quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@
+cmd_cc_symtypes_c = \
+ $(CPP) -D__GENKSYMS__ $(c_flags) $< \
+ | $(GENKSYMS) -T $@ >/dev/null; \
+ test -s $@ || rm -f $@
+
+%.symtypes : %.c FORCE
+ $(call if_changed_dep,cc_symtypes_c)
+
# C (.c) files
# The C file is compiled and updated dependency information is generated.
# (See cmd_cc_o_c + relevant part of rule_cc_o_c)
@@ -166,7 +175,8 @@ cmd_cc_o_c = $(CC) $(c_flags) -c -o $(@D
cmd_modversions = \
if $(OBJDUMP) -h $(@D)/.tmp_$(@F) | grep -q __ksymtab; then \
$(CPP) -D__GENKSYMS__ $(c_flags) $< \
- | $(GENKSYMS) -a $(ARCH) \
+ | $(GENKSYMS) $(if $(KBUILD_SYMTYPES), \
+ -T $(@D)/$(@F:.o=.symtypes)) -a $(ARCH) \
> $(@D)/.tmp_$(@F:.o=.ver); \
\
$(LD) $(LDFLAGS) -r -o $@ $(@D)/.tmp_$(@F) \
Index: linux-2.6.16/scripts/genksyms/genksyms.c
===================================================================
--- linux-2.6.16.orig/scripts/genksyms/genksyms.c
+++ linux-2.6.16/scripts/genksyms/genksyms.c
@@ -42,7 +42,7 @@ static FILE *debugfile;
int cur_line = 1;
char *cur_filename;
-static int flag_debug, flag_dump_defs, flag_warnings;
+static int flag_debug, flag_dump_defs, flag_dump_types, flag_warnings;
static const char *arch = "";
static const char *mod_prefix = "";
@@ -50,6 +50,7 @@ static int errors;
static int nsyms;
static struct symbol *expansion_trail;
+static struct symbol *visited_symbols;
static const char *const symbol_type_name[] = {
"normal", "typedef", "enum", "struct", "union"
@@ -176,6 +177,7 @@ struct symbol *add_symbol(const char *na
sym->type = type;
sym->defn = defn;
sym->expansion_trail = NULL;
+ sym->visited = NULL;
sym->is_extern = is_extern;
sym->hash_next = symtab[h];
@@ -236,26 +238,11 @@ static int equal_list(struct string_list
static void print_node(FILE * f, struct string_list *list)
{
- switch (list->tag) {
- case SYM_STRUCT:
- putc('s', f);
- goto printit;
- case SYM_UNION:
- putc('u', f);
- goto printit;
- case SYM_ENUM:
- putc('e', f);
- goto printit;
- case SYM_TYPEDEF:
- putc('t', f);
- goto printit;
-
- printit:
+ if (list->tag != SYM_NORMAL) {
+ putc(symbol_type_name[list->tag][0], f);
putc('#', f);
- case SYM_NORMAL:
- fputs(list->string, f);
- break;
}
+ fputs(list->string, f);
}
static void print_list(FILE * f, struct string_list *list)
@@ -287,9 +274,9 @@ static void print_list(FILE * f, struct
}
}
-static unsigned long expand_and_crc_list(struct string_list *list,
- unsigned long crc)
+static unsigned long expand_and_crc_sym(struct symbol *sym, unsigned long crc)
{
+ struct string_list *list = sym->defn;
struct string_list **e, **b;
struct string_list *tmp, **tmp2;
int elem = 1;
@@ -332,7 +319,7 @@ static unsigned long expand_and_crc_list
} else {
subsym->expansion_trail = expansion_trail;
expansion_trail = subsym;
- crc = expand_and_crc_list(subsym->defn, crc);
+ crc = expand_and_crc_sym(subsym, crc);
}
break;
@@ -382,12 +369,22 @@ static unsigned long expand_and_crc_list
} else {
subsym->expansion_trail = expansion_trail;
expansion_trail = subsym;
- crc = expand_and_crc_list(subsym->defn, crc);
+ crc = expand_and_crc_sym(subsym, crc);
}
break;
}
}
+ {
+ static struct symbol **end = &visited_symbols;
+
+ if (!sym->visited) {
+ *end = sym;
+ end = &sym->visited;
+ sym->visited = (struct symbol *)-1L;
+ }
+ }
+
return crc;
}
@@ -406,7 +403,7 @@ void export_symbol(const char *name)
expansion_trail = (struct symbol *)-1L;
- crc = expand_and_crc_list(sym->defn, 0xffffffff) ^ 0xffffffff;
+ crc = expand_and_crc_sym(sym, 0xffffffff) ^ 0xffffffff;
sym = expansion_trail;
while (sym != (struct symbol *)-1L) {
@@ -464,6 +461,7 @@ static void genksyms_usage(void)
int main(int argc, char **argv)
{
+ FILE *dumpfile = NULL;
int o;
#ifdef __GNU_LIBRARY__
@@ -473,15 +471,16 @@ int main(int argc, char **argv)
{"warnings", 0, 0, 'w'},
{"quiet", 0, 0, 'q'},
{"dump", 0, 0, 'D'},
+ {"dump-types", 1, 0, 'T'},
{"version", 0, 0, 'V'},
{"help", 0, 0, 'h'},
{0, 0, 0, 0}
};
- while ((o = getopt_long(argc, argv, "a:dwqVDk:p:",
+ while ((o = getopt_long(argc, argv, "a:dwqVDT:k:p:",
&long_opts[0], NULL)) != EOF)
#else /* __GNU_LIBRARY__ */
- while ((o = getopt(argc, argv, "a:dwqVDk:p:")) != EOF)
+ while ((o = getopt(argc, argv, "a:dwqVDT:k:p:")) != EOF)
#endif /* __GNU_LIBRARY__ */
switch (o) {
case 'a':
@@ -502,6 +501,14 @@ int main(int argc, char **argv)
case 'D':
flag_dump_defs = 1;
break;
+ case 'T':
+ flag_dump_types = 1;
+ dumpfile = fopen(optarg, "w");
+ if (!dumpfile) {
+ perror(optarg);
+ return 1;
+ }
+ break;
case 'h':
genksyms_usage();
return 0;
@@ -524,6 +531,24 @@ int main(int argc, char **argv)
yyparse();
+ if (flag_dump_types && visited_symbols) {
+ while (visited_symbols != (struct symbol *)-1L) {
+ struct symbol *sym = visited_symbols;
+
+ if (sym->type != SYM_NORMAL) {
+ putc(symbol_type_name[sym->type][0], dumpfile);
+ putc('#', dumpfile);
+ }
+ fputs(sym->name, dumpfile);
+ putc(' ', dumpfile);
+ print_list(dumpfile, sym->defn);
+ putc('\n', dumpfile);
+
+ visited_symbols = sym->visited;
+ sym->visited = NULL;
+ }
+ }
+
if (flag_debug) {
fprintf(debugfile, "Hash table occupancy %d/%d = %g\n",
nsyms, HASH_BUCKETS,
Index: linux-2.6.16/scripts/genksyms/genksyms.h
===================================================================
--- linux-2.6.16.orig/scripts/genksyms/genksyms.h
+++ linux-2.6.16/scripts/genksyms/genksyms.h
@@ -41,6 +41,7 @@ struct symbol {
enum symbol_type type;
struct string_list *defn;
struct symbol *expansion_trail;
+ struct symbol *visited;
int is_extern;
};
Index: linux-2.6.16/Makefile
===================================================================
--- linux-2.6.16.orig/Makefile
+++ linux-2.6.16/Makefile
@@ -961,7 +961,8 @@ clean: archclean $(clean-dirs)
$(call cmd,rmfiles)
@find . $(RCS_FIND_IGNORE) \
\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
- -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
+ -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
+ -o -name '*.symtypes' \) \
-type f -print | xargs rm -f
# mrproper - Delete all generated files, including .config
@@ -1303,6 +1304,8 @@ endif
$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.o: %.S prepare scripts FORCE
$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
+%.symtypes: %.c prepare scripts FORCE
+ $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
# Modules
/ %/: prepare scripts FORCE
^ permalink raw reply
* Re: [PATCH] powerpc: whitespace cleanup in reg.h
From: jschopp @ 2006-05-09 18:34 UTC (permalink / raw)
To: Michael Neuling; +Cc: linuxppc-dev, paulus
In-Reply-To: <20060509163419.E4E1767A04@ozlabs.org>
> In reg.h we mostly have #define<space> but there are a few #define<tab>
> around. Clean these up so we use space exclusively.
>
> Signed-off-by: Michael Neuling <mikey@neuling.org>
nack
> +#define SPRN_HID6 0x3F9 /* BE HID 6 */
> +#define HID6_LB (0x0F<<12) /* Concurrent Large Page Modes */
> +#define HID6_DLP (1<<20) /* Disable all large page modes (4K only) */
> +#define SPRN_TSC_CELL 0x399 /* Thread switch control on Cell */
> +#define TSC_CELL_DEC_ENABLE_0 0x400000 /* Decrementer Interrupt */
> +#define TSC_CELL_DEC_ENABLE_1 0x200000 /* Decrementer Interrupt */
> +#define TSC_CELL_EE_ENABLE 0x100000 /* External Interrupt */
> +#define TSC_CELL_EE_BOOST 0x080000 /* External Interrupt Boost */
> +#define SPRN_TSC 0x3FD /* Thread switch control on others */
> +#define SPRN_TST 0x3FC /* Thread switch timeout on others */
OK, the tab to space for lines like SPRN_HID6 I understand. But then you seem to be
trying to do indenting with 3 spaces instead of tabs. And your values don't line up, and
your comments don't line up.
I'm just saying, either fix the formatting right or don't fix it at all. Moving it from
one ugly to another ugly is not worth the trouble.
^ permalink raw reply
* CS4281 AC 97 format
From: Saqib bin Sohail @ 2006-05-09 18:34 UTC (permalink / raw)
To: alsa-devel
Hi
I am trying to implement cs4281.c driver in VxWorks, and seem to have it
working reasonably, but I can't understand the format of ADC_BUFFER. (Hardware
is not my thing and have never played with a sound card before the past one
month)
I recorded almost 10 seconds of data (128000 samples at 11025 samples per
second with 8 bit mono) and dumped into a file. (see attached file) the file
was obviously in hex format and i converted it. Now if I pass that hex file to
playback, it sort of plays back nicely, but the problem is I am not sure how to
interpret the data. I am taking the file and doing the following:
-> i convert the hex into decimal and the data ranges from -128 to 127
-> i load that into matlab y = ('c:\song.dat');
-> i divide each sample by 255 so the data ranges from -1 to 1 (approximately)
-> i use wavwrite(y,11025,8,'c:\song.wav');
I can sort of recognize the song but its so distorted. I am pretty sure that I
am getting the right data out of the ADC_Buffer when I record but I am unable
to understand how to right interpret the data. It would be great if someone
could reply.
Both hex and int files are available below.
http://jobim.colorado.edu/~sohail/song.dat
http://jobim.colorado.edu/~sohail/song.text
--
Saqib bin Sohail
PhD ECE
University of Colorado at Boulder
Res: (303) 786 0636
http://ucsu.colorado.edu/~sohail/index.html
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:34 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:34 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
fedukoff - 05-09-06 20:29
----------------------------------------------------------------------
I have some problems with it... (I'm on Linpus)
# modprobe i810_audio
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: init_module: No
such device
Hint: insmod errors can be caused by incorrect module parameters,
including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: insmod
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o failed
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: insmod
i810_audio failed
no any messages in /var/log/messages, but dmesg show one new line:
Intel 810 + AC97 Audio, version 0.24, 17:47:13 Apr 21 2004
----------------------------------------------------------------------
rlrevell - 05-09-06 20:34
----------------------------------------------------------------------
I think that's a "no" - it seems that the OSS driver does not support the
device.
You did make sure to unload all snd-* modules first right?
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
05-09-06 20:17 rlrevell Note Added: 0009684
05-09-06 20:19 rlrevell Note Added: 0009685
05-09-06 20:28 drseergio Note Added: 0009686
05-09-06 20:29 fedukoff Note Added: 0009687
05-09-06 20:34 rlrevell Note Added: 0009688
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* Re: iproute2 git repository
From: Stephen Hemminger @ 2006-05-09 18:31 UTC (permalink / raw)
To: Herbert Xu; +Cc: netdev
In-Reply-To: <E1FdQki-0007gj-00@gondolin.me.apana.org.au>
On Tue, 09 May 2006 21:51:44 +1000
Herbert Xu <herbert@gondor.apana.org.au> wrote:
> Stephen Hemminger <shemminger@osdl.org> wrote:
> > I moved iproute2 out of CVS. New home is:
> > git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git
>
> Thanks Stephen.
>
> BTW, how come there is a checked out tree sitting in that git directory?
fixed. stupid git
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:29 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:29 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
drseergio - 05-09-06 20:28
----------------------------------------------------------------------
So, does the OSS work?
----------------------------------------------------------------------
fedukoff - 05-09-06 20:29
----------------------------------------------------------------------
I have some problems with it... (I'm on Linpus)
# modprobe i810_audio
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: init_module: No
such device
Hint: insmod errors can be caused by incorrect module parameters,
including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: insmod
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o failed
/lib/modules/2.4.20-8lp/kernel/drivers/sound/i810_audio.o: insmod
i810_audio failed
no any messages in /var/log/messages, but dmesg show one new line:
Intel 810 + AC97 Audio, version 0.24, 17:47:13 Apr 21 2004
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
05-09-06 20:17 rlrevell Note Added: 0009684
05-09-06 20:19 rlrevell Note Added: 0009685
05-09-06 20:28 drseergio Note Added: 0009686
05-09-06 20:29 fedukoff Note Added: 0009687
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:28 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:28 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
rlrevell - 05-09-06 20:19
----------------------------------------------------------------------
Um, just unload the alsa modules and load i810_audio
----------------------------------------------------------------------
drseergio - 05-09-06 20:28
----------------------------------------------------------------------
So, does the OSS work?
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
05-09-06 20:17 rlrevell Note Added: 0009684
05-09-06 20:19 rlrevell Note Added: 0009685
05-09-06 20:28 drseergio Note Added: 0009686
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* Re: [PATCH] IPC_SET_PERM cleanup
From: Linda Knippers @ 2006-05-09 18:27 UTC (permalink / raw)
To: Klaus Weidner; +Cc: linux-audit
In-Reply-To: <20060509181523.GD31457@w-m-p.com>
Klaus Weidner wrote:
> On Tue, May 09, 2006 at 01:47:26PM -0400, Linda Knippers wrote:
>
>>I'm starting to wonder whether we actually need the IPC_NEW_PERMS
>>record. We don't spell out similar information for chown, for
>>example. In that case, the new owner is a1 field. Do we treat IPC's
>>differently because their argument is a structure pointer?
>
>
> Yes, that's the difference. chown takes an integer argument that's
> already contained in the syscall record, even though "a1" isn't a very
> descriptive name for it. For ipc_set, the argument is the address of the
> structure which would be useless, and the extra record makes the content
> of the structure available.
>
>
>>In any case, if someone truly wanted to get all audit records that
>>had the uid either as part of the subject/object identity and also
>>included all records that had the uid as an argument, they'd need
>>to look at the a* fields for other system calls as well. Since we
>>don't look at the a* arguments for other syscalls, it doesn't seem
>>like we should include the arguments for the IPC syscalls if someone
>>is searching for the records generated by a uid.
>
>
> CAPP requires audit records for "All modifications of the values of
> security attributes" for 5.4.1 Management of Object Security Attributes
> (FMT_MSA.1). It doesn't specifically require the new values as detail
> information for the audit record, so if you just want to meet the letter
> of CAPP you could leave it out, but the record is of course far more
> useful if you include the information.
>
> How the search on UID works in detail isn't all that important. I think
> the main issue is that the syscall record contains correct and useful
> information. For chown, someone who cares about the argument UID can look
> at the "a1" field, but I don't think it would be necessary to have an
> easy search method available for that.
I wasn't actually proposing that we do that. I was really trying to
make the point that including the iuid and new_iuid fields in with
the results of a uid search, which is what Steve was proposing as a
good thing, doesn't seem right to me. There are lots of other syscalls
that could have the uid as an argument that would be skipped so pulling
in the ipc ones just because the arguments are labeled seems
inconsistent and not useful.
> If you want something equivalent for ipc_set, having fields with
> unsearchable names would be fine, which happens to be what you
> get with the "new_iuid" style field names.
Maybe I should use a5, a6, ..., since they're really just more
arguments, although we'd probably have to document which values
we're including since there are more arguments that aren't
being recorded.
>
> -Klaus
^ permalink raw reply
* Re: [PATCH] fs: fcntl_setlease defies lease_init assumptions
From: Manfred Spraul @ 2006-05-09 18:25 UTC (permalink / raw)
To: Pekka J Enberg
Cc: Christoph Lameter, Linus Torvalds, Daniel Hokka Zakrisson,
linux-kernel, Björn Steinbrink, greg, matthew, akpm
In-Reply-To: <Pine.LNX.4.58.0605091316010.27821@sbz-30.cs.Helsinki.FI>
Pekka J Enberg wrote:
>I think you mean
>
>static inline struct kmem_cache *slab_get_cache(const void *obj)
>{
> struct kmem_cache **p = (void *)((unsigned long) obj & ~(PAGE_SIZE-1));
> return *p;
>}
>
>
>
Of course.
>On Tue, 9 May 2006, Manfred Spraul wrote:
>
>
>>The result would be a few small restrictions: all objects must start in the
>>first page of a slab (there are no exceptions on my 2.6.16 system), and
>>PAGE_SIZE'd caches are very expensive. Replacing the names_cache with
>>get_free_page is trivial. That leaves the pgd cache.
>>
>>
>
>Your plan makes sense for slabs that have slab management structures
>embedded within.
>
No - it would only make sense if it could be used for all slabs.
Otherwise: How should kfree figure out if it's called for a slab with
embedded pointers or not?
> We already have enough free space there for one pointer
>due to
>
> colour_off += cachep->slab_size;
>
>in the alloc_slabmgmt() function, I think. Are you planning to kill
>external slab management allocation completely by switching to
>get_free_pages() for those cases? I'd much rather make the switch to page
>allocator under the hood so kmalloc(PAGE_SIZE*n) would still work because
>it's much nicer API.
>
>
How many kmalloc(PAGE_SIZE*n) users are there?
--
Manfred
^ permalink raw reply
* [PATCH][SPT][DISCUSS] BUG() in shadow.h delete_shadow_status() with HVM guest
From: Woller, Thomas @ 2006-05-09 18:24 UTC (permalink / raw)
To: xen-devel
We are hitting the BUG() at the end of delete_shadow_status() in
xen/include/asm-x86/shadow.h with a PAE enabled 32bit unmodified windows
guest, on both SVM and VMX, with a 64bit hypervisor. After a PAE 32bit
winxpsp2 or win2003 guest, boots, and then has been properly shutdown -
performing a "xm destroy/xm shutdown" results in this BUG().
We clearly don't understand the intricacies of the SPT code, but our
best guess seems to be that the BUG() is not valid in the failing case.
The theory is that since a single PDPT page can have multiple PDPs, then
maybe this function has already been called for this particular gmfn.
Took the same philosophy as with free_shadow_page() in shadow_public.c
line 766ish.
We are definitely unsure as to the viability of this fix as a final
solution, but the below fix alleviates this BUG() on both SVM and VMX
boxes. If anyone knowledgable in the SPT area could take a look at the
patch, we'd appreciate your thoughts.
thanks
Tom
# HG changeset patch
# User twoller@xen-trw2.amd.com
# Node ID c8e01ad41814e923c70e97877a22ae6ffeacb30a
# Parent 6e35b42994944e82550da99d03bcf9676b4ddec2
Fix a problem when destroying windows domains that are PAE enabled.
diff -r 6e35b4299494 -r c8e01ad41814 xen/include/asm-x86/shadow.h
--- a/xen/include/asm-x86/shadow.h Mon May 8 17:44:46 2006
+++ b/xen/include/asm-x86/shadow.h Tue May 9 15:40:35 2006
@@ -1352,6 +1352,17 @@
}
while ( x != NULL );
+#if CONFIG_PAGING_LEVELS == 4
+ /*
+ * Since a single PDPT page can have multiple PDPs, it's possible
+ * that it has been already called for this gmfn.
+ */
+ if ( stype == PGT_l4_shadow && (!mfn_is_page_table(gmfn)) )
+ {
+ goto found;
+ }
+#endif
+
/* If we got here, it wasn't in the list! */
BUG();
^ permalink raw reply
* Re: [RFC PATCH 18/35] Support gdt/idt/ldt handling on Xen.
From: Martin Bligh @ 2006-05-09 18:21 UTC (permalink / raw)
To: Christian Limpach
Cc: Chris Wright, virtualization, xen-devel, linux-kernel, Ian Pratt
In-Reply-To: <20060509181444.GP7834@cl.cam.ac.uk>
Christian Limpach wrote:
> On Tue, May 09, 2006 at 07:49:54AM -0700, Martin J. Bligh wrote:
>
>>>+static inline void load_TLS(struct thread_struct *t, unsigned int cpu)
>>>+{
>>>+#define C(i)
>>>HYPERVISOR_update_descriptor(virt_to_machine(&get_cpu_gdt_table(cpu)[GDT_ENTRY_TLS_MIN + i]), *(u64 *)&t->tls_array[i])
>>>+ C(0); C(1); C(2);
>>>+#undef C
>>>+}
>>
>>Please just expand this or make it a real function call (static inline),
>>not a temporary macro ..
>
>
> Yes, I've added an inline function to do a single descriptor.
>
> Should I change the non-xen case as well? It was the inspiration
> for this code ;-)
If it looks anything like that, then I'd vote yes ;-)
M.
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:19 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:19 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
rlrevell - 05-09-06 20:17
----------------------------------------------------------------------
Sorry my previous post was incorrect - these systems do not have HDA codec,
they use the older AC97 codec.
And yes, snd_intel8x0 and i810_audio are drivers for the same chip. It's
a long shot that i810_audio would work
----------------------------------------------------------------------
rlrevell - 05-09-06 20:19
----------------------------------------------------------------------
Um, just unload the alsa modules and load i810_audio
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
05-09-06 20:17 rlrevell Note Added: 0009684
05-09-06 20:19 rlrevell Note Added: 0009685
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* Re: r8169+NAPI soft lockup
From: Richard Gregory @ 2006-05-09 18:17 UTC (permalink / raw)
To: Francois Romieu; +Cc: netdev
In-Reply-To: <20060509164335.GA807@electric-eye.fr.zoreil.com>
Francois Romieu wrote:
> Richard Gregory <R.Gregory@liverpool.ac.uk> :
>
>>I'm seeing the crash below using 2.6.16.11 custom based on RedHat FC2.
>>The main culprit being the r8169+NAPI module, although the it821x module
>>(with noraid=1) seems to bring out the bug, maybe because it uses the
>>same interrupt.
>
>
> (lot of things to digest...)
>
> Is netconsole enabled ?
It can be. How much output do you need, a single soft lockup?
Richard
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:17 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:17 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
fedukoff - 05-09-06 20:16
----------------------------------------------------------------------
hmm. how to configure oss? (I want to try)
----------------------------------------------------------------------
rlrevell - 05-09-06 20:17
----------------------------------------------------------------------
Sorry my previous post was incorrect - these systems do not have HDA codec,
they use the older AC97 codec.
And yes, snd_intel8x0 and i810_audio are drivers for the same chip. It's
a long shot that i810_audio would work
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
05-09-06 20:17 rlrevell Note Added: 0009684
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* [ALSA - driver 0001134]: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq 52-101)
From: bugtrack @ 2006-05-09 18:16 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1134>
======================================================================
Reported By: liangalei
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1134
Category: PCI - intel8x0
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Distribution: Fedora Core 3
Kernel Version: 2.6.11-1.14
======================================================================
Date Submitted: 05-28-2005 08:49 CEST
Last Modified: 05-09-2006 20:16 CEST
======================================================================
Summary: alsa 1.0.9rc4 + intel 82801FB/.../ = No sound (Benq
52-101)
Description:
My notebook is Benq 52-101, update FC3 to kernel 2.6.11-1.14_FC3
alsamixer report: Card=intel ICH6, chip=Conexant id 3 (Question, Conexant
just support modem's AC-97 or else provide whole sound ? )
alsaconf: can find "Intel Corp 82801FB/.../ ICH6 family AC'97 Audio", and
will contine to "Have a lot fun".
I have ever, update linux kernel from 2.6.9 to 2.6.11(yum update, no
recompiling), and alsa driver from 0.9.0/1.0.8/1.0.9rc3/4.
Recomipling ALsa driver/lib/oss/tools/util.., with drive, ever try
----- ./configure --with-cards=azx (error: no this card)
----- ./configure ; make; make install (no error report), not run
./snddevices
No sound ! So much days, so much test..... (if i915GM chipset + Conexant
chip...(see below lspci), will be powered by alsa-1.0.9rc4 ? --- if still
not, I will just wait for new alsa-driver.)
thanks
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
has duplicate 0001931 Unknown AC97 codec, digital sound works
======================================================================
----------------------------------------------------------------------
drseergio - 05-09-06 19:50
----------------------------------------------------------------------
i810 audio is the driver for the same chip?
http://www.ubuntuforums.org/showthread.php?t=111870 found this... Looks
like people have many problems with HDA codec.
----------------------------------------------------------------------
fedukoff - 05-09-06 20:16
----------------------------------------------------------------------
hmm. how to configure oss? (I want to try)
Issue History
Date Modified Username Field Change
======================================================================
05-28-05 08:49 liangalei New Issue
05-28-05 08:49 liangalei Distribution => Fedora Core 3
05-28-05 08:49 liangalei Kernel Version => 2.6.11-1.14
05-28-05 09:17 liangalei Note Added: 0004759
05-28-05 09:18 liangalei Issue Monitored: liangalei
05-30-05 03:29 liangalei Note Added: 0004795
06-01-05 16:58 tiwai Note Added: 0004863
06-01-05 17:04 tiwai Category 0_compilation problem_!!!
=> PCI - intel8x0
06-02-05 10:42 liangalei Note Added: 0004875
06-06-05 09:53 perex Assigned To perex =>
06-23-05 12:42 tiwai Note Added: 0005182
06-24-05 03:12 liangalei File Added: asound.state
06-24-05 03:13 liangalei File Added: ac97#0-0
06-24-05 03:14 liangalei File Added: ac97#0-0+regs
06-24-05 03:18 liangalei Note Added: 0005202
08-28-05 15:28 ybar Note Added: 0005962
11-29-05 05:59 derek Issue Monitored: derek
11-29-05 06:00 derek Issue End Monitor: derek
11-29-05 06:03 derek Note Added: 0006870
02-07-06 10:03 anhi1968 Issue Monitored: anhi1968
02-17-06 22:22 gandhi Note Added: 0008110
02-17-06 23:26 gandhi Issue Monitored: gandhi
02-17-06 23:28 gandhi Note Edited: 0008110
02-17-06 23:43 gandhi Note Edited: 0008110
02-18-06 02:05 gandhi Note Added: 0008112
02-18-06 08:13 liangalei Note Added: 0008116
02-18-06 15:56 gandhi Issue Monitored: tiwai
02-18-06 15:56 gandhi Note Added: 0008120
02-28-06 12:02 anhi1968 Issue End Monitor: anhi1968
03-03-06 08:29 robitech Note Added: 0008336
03-15-06 05:34 JProgrammer Note Added: 0008526
03-15-06 05:37 JProgrammer Issue Monitored: JProgrammer
03-15-06 06:39 Kooper Note Added: 0008527
03-15-06 11:40 tiwai Note Added: 0008531
03-15-06 11:53 Kooper Note Added: 0008535
03-15-06 12:13 JProgrammer Note Added: 0008538
03-15-06 12:18 tiwai Note Added: 0008540
03-15-06 23:48 JProgrammer Note Added: 0008579
03-16-06 15:04 tiwai Note Added: 0008606
03-16-06 15:05 tiwai File Added: ac97-remove-modem.diff
03-16-06 19:34 rlrevell Relationship added has duplicate 0001931
03-17-06 04:10 Kooper Note Added: 0008633
03-17-06 12:07 tiwai Note Added: 0008641
03-17-06 12:32 Kooper File Added: kooper-alsa-bugreport.tgz
03-17-06 12:35 Kooper Note Added: 0008644
03-21-06 02:38 JProgrammer Note Added: 0008736
03-25-06 10:51 alessiodf Note Added: 0008944
03-26-06 20:12 alessiodf Note Edited: 0008944
03-26-06 20:15 alessiodf Note Edited: 0008944
03-30-06 15:47 trava Note Added: 0009034
04-07-06 13:05 kesiev Note Added: 0009137
04-07-06 13:06 kesiev Note Edited: 0009137
04-09-06 03:23 alt_ackbar Note Added: 0009177
04-11-06 11:34 kesiev Issue Monitored: kesiev
04-11-06 11:39 kesiev Issue End Monitor: kesiev
04-12-06 16:21 kesiev Note Added: 0009246
04-12-06 16:21 kesiev File Added: qta058Ba.inf
04-13-06 14:00 kesiev Note Added: 0009259
04-13-06 14:00 kesiev File Added: windows-details.txt
04-13-06 14:54 kesiev Note Edited: 0009259
04-13-06 15:34 kesiev Issue Monitored: kesiev
04-15-06 12:33 kesiev Note Edited: 0009259
04-15-06 12:33 kesiev File Added: alsasound.conf
04-18-06 09:35 fedukoff Note Added: 0009326
05-01-06 20:24 rawsock Issue Monitored: rawsock
05-03-06 15:55 fedukoff Issue Monitored: fedukoff
05-09-06 14:36 drseergio Note Added: 0009658
05-09-06 16:40 rlrevell Note Added: 0009661
05-09-06 17:16 drseergio Note Added: 0009662
05-09-06 17:19 drseergio Note Edited: 0009662
05-09-06 17:28 rlrevell Note Added: 0009664
05-09-06 17:31 drseergio Note Edited: 0009662
05-09-06 17:32 drseergio Note Added: 0009665
05-09-06 17:41 drseergio Note Edited: 0009665
05-09-06 17:49 rlrevell Note Added: 0009667
05-09-06 17:52 drseergio Note Added: 0009668
05-09-06 17:57 rlrevell Note Added: 0009669
05-09-06 18:00 drseergio Note Added: 0009670
05-09-06 18:33 fedukoff Note Added: 0009672
05-09-06 18:44 drseergio Note Added: 0009673
05-09-06 19:11 fedukoff Note Added: 0009674
05-09-06 19:12 rlrevell Note Added: 0009675
05-09-06 19:21 drseergio Note Added: 0009676
05-09-06 19:27 fedukoff Note Added: 0009677
05-09-06 19:28 rlrevell Note Added: 0009678
05-09-06 19:30 drseergio Note Added: 0009679
05-09-06 19:39 fedukoff Note Added: 0009680
05-09-06 19:42 rlrevell Note Added: 0009681
05-09-06 19:50 drseergio Note Added: 0009682
05-09-06 20:16 fedukoff Note Added: 0009683
======================================================================
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
^ permalink raw reply
* Re: [linux-lvm] Snapshot segfaults lvremove + bug kernel
From: Robin Bowes @ 2006-05-09 18:15 UTC (permalink / raw)
To: mauelshagen, LVM general discussion and development
In-Reply-To: <20060509094146.GA2708@redhat.com>
Heinz Mauelshagen wrote:
>
> this is a known issue with tearing down kcopyd jobs we're working on.
>
Heinz,
Do you have any idea when we might see a fix for this? Is the bug
present in later versions?
For example, I've got a box running FC4 that has this problem. If I
upgrade to FC5 am I likely to still see the problem?
Also, what's the best way to get rid of the snapshot volumes? I'm
currently planning to boot from a recovery disk that supports lvm and
run lvremove from there.
Thanks for any suggestions/advice,
R.
^ permalink raw reply
* Re: [PATCH] IPC_SET_PERM cleanup
From: Klaus Weidner @ 2006-05-09 18:15 UTC (permalink / raw)
To: Linda Knippers; +Cc: linux-audit
In-Reply-To: <4460D5AE.8040700@hp.com>
On Tue, May 09, 2006 at 01:47:26PM -0400, Linda Knippers wrote:
> I'm starting to wonder whether we actually need the IPC_NEW_PERMS
> record. We don't spell out similar information for chown, for
> example. In that case, the new owner is a1 field. Do we treat IPC's
> differently because their argument is a structure pointer?
Yes, that's the difference. chown takes an integer argument that's
already contained in the syscall record, even though "a1" isn't a very
descriptive name for it. For ipc_set, the argument is the address of the
structure which would be useless, and the extra record makes the content
of the structure available.
> In any case, if someone truly wanted to get all audit records that
> had the uid either as part of the subject/object identity and also
> included all records that had the uid as an argument, they'd need
> to look at the a* fields for other system calls as well. Since we
> don't look at the a* arguments for other syscalls, it doesn't seem
> like we should include the arguments for the IPC syscalls if someone
> is searching for the records generated by a uid.
CAPP requires audit records for "All modifications of the values of
security attributes" for 5.4.1 Management of Object Security Attributes
(FMT_MSA.1). It doesn't specifically require the new values as detail
information for the audit record, so if you just want to meet the letter
of CAPP you could leave it out, but the record is of course far more
useful if you include the information.
How the search on UID works in detail isn't all that important. I think
the main issue is that the syscall record contains correct and useful
information. For chown, someone who cares about the argument UID can look
at the "a1" field, but I don't think it would be necessary to have an
easy search method available for that.
If you want something equivalent for ipc_set, having fields with
unsearchable names would be fine, which happens to be what you
get with the "new_iuid" style field names.
-Klaus
^ permalink raw reply
* Re: [RFC PATCH 18/35] Support gdt/idt/ldt handling on Xen.
From: Christian Limpach @ 2006-05-09 18:14 UTC (permalink / raw)
To: Martin J. Bligh
Cc: Chris Wright, virtualization, xen-devel, linux-kernel, Ian Pratt
In-Reply-To: <4460AC12.3000006@mbligh.org>
On Tue, May 09, 2006 at 07:49:54AM -0700, Martin J. Bligh wrote:
> >+static inline void load_TLS(struct thread_struct *t, unsigned int cpu)
> >+{
> >+#define C(i)
> >HYPERVISOR_update_descriptor(virt_to_machine(&get_cpu_gdt_table(cpu)[GDT_ENTRY_TLS_MIN + i]), *(u64 *)&t->tls_array[i])
> >+ C(0); C(1); C(2);
> >+#undef C
> >+}
>
> Please just expand this or make it a real function call (static inline),
> not a temporary macro ..
Yes, I've added an inline function to do a single descriptor.
Should I change the non-xen case as well? It was the inspiration
for this code ;-)
christian
^ permalink raw reply
* Re: [PATCH 0/3] VFS changes to collapse AIO and vectored IO into single (set of) fileops.
From: Benjamin LaHaise @ 2006-05-09 18:14 UTC (permalink / raw)
To: Badari Pulavarty; +Cc: lkml, akpm, christoph, cel
In-Reply-To: <1147197826.27056.4.camel@dyn9047017100.beaverton.ibm.com>
On Tue, May 09, 2006 at 11:03:45AM -0700, Badari Pulavarty wrote:
> single set of file-operation method using aio_read/aio_write.
> This work was originally suggested & started by Christoph Hellwig,
> when Zach Brown tried to add vectored support for AIO.
>
> Here is the summary:
>
> [PATCH 1/3] Vectorize aio_read/aio_write methods
>
> [PATCH 2/3] Remove readv/writev methods and use aio_read/aio_write
> instead.
>
> [PATCH 3/3] Zach's core aio changes to support vectored AIO.
They look pretty sane, and I agree they should go into -mm soon. Cheers,
-ben
--
"Time is of no importance, Mr. President, only life is important."
Don't Email: <dont@kvack.org>.
^ permalink raw reply
* [LARTC] tc del class not working
From: Eliot, Wireless and Server Administrator, Great Lakes Internet @ 2006-05-09 18:10 UTC (permalink / raw)
To: lartc
When I start my script:
* - Creating classes on br1 for upload control ...
* - tc class add dev br1 parent 2:0 classid 2:46 hfsc ls m1
576.0Kbit d 2000ms m2 192.0Kbit ul m2 384Kbit ...
[ ok ]
* - tc class add dev br1 parent 2:46 classid 2:47 hfsc sc umax
1500b dmax 30ms rate 80Kbit . [ ok ]
* - tc class add dev br1 parent 2:46 classid 2:48 hfsc ls m2
152.0Kbit ul m2 152.0Kbit ... [ ok ]
* - tc class add dev br1 parent 2:46 classid 2:49 hfsc rt m2
76.00Kbit ls m2 152.0Kbit ul m2 304Kbit
...
[ ok ]
* - Creating classes on wivl4 for download control ...
* - tc class add dev wivl4 parent 5:0 classid 5:46 hfsc ls m1
1536.0Kbit d 2000ms m2 256.00Kbit ul m2 1024Kbit ...
[ ok ]
* - tc class add dev wivl4 parent 5:46 classid 5:47 hfsc sc umax
1500b dmax 30ms rate 80Kbit [ ok ]
* - tc class add dev wivl4 parent 5:46 classid 5:48 hfsc ls m2
472.0Kbit ul m2 472.0Kbit ... [ ok ]
* - tc class add dev wivl4 parent 5:46 classid 5:49 hfsc rt m2
236.00Kbit ls m2 472.0Kbit ul m2 944Kbit ...
[ ok ]
* - Adding rules to classify traffic for 00:05:9e:80:e1:3b ...
* - iptables -A macfilter -m mac --mac-source 00:05:9e:80:e1:3b ...
[ ok ]
* - iptables -A macfilter_nat -t nat -m mac --mac-source
00:05:9e:80:e1:3b ... [ ok ]
* - Adding rules to flag VoIP traffic ...
* - iptables -A PREROUTING -t mangle -p udp -m mac --mac-source
00:05:9e:80:e1:3b -m multiport --ports 53,4569,5060,10000:20000 -j MARK
--set-mark 47 ... [ ok ]
* - iptables -A PREROUTING -t mangle -p tcp -m mac --mac-source
00:05:9e:80:e1:3b -m multiport --ports 22,23,53 -j MARK --set-mark 47
... [ ok ]
* - iptables -A PREROUTING -t mangle -p icmp -m mac --mac-source
00:05:9e:80:e1:3b -j MARK --set-mark 47 ...
[ ok ]
* - iptables -A PREROUTING -t mangle -m mark --mark 47 -j CONNMARK
--save-mark ... [ ok ]
* - Adding rules to flag P2P traffic ...
* - iptables -A PREROUTING -t mangle -m mac --mac-source
00:05:9e:80:e1:3b -m ipp2p --ipp2p -j MARK
--set-mark 48 ...
[ ok ]
* - iptables -A PREROUTING -t mangle -m mark --mark 48 -j CONNMARK
--save-mark ... [ ok ]
* - Adding rules to flag General traffic ...
* - iptables -A PREROUTING -t mangle -m mac --mac-source
00:05:9e:80:e1:3b -j MARK --set-mar [ ok ]
* - iptables -A PREROUTING -t mangle -m mark --mark 49 -j CONNMARK
--save-mark ... [ ok ]
* - Adding rules to classify traffic on br1 ...
* - iptables -A POSTROUTING -t mangle -o br1 -m mark --mark 47 -j
CLASSIFY --set-class 2:47 [ ok ]
* - iptables -A POSTROUTING -t mangle -o br1 -m mark --mark 48 -j
CLASSIFY --set-class 2:48 [ ok ]
* - iptables -A POSTROUTING -t mangle -o br1 -m mark --mark 49 -j
CLASSIFY --set-class 2:49 [ ok ]
* - Adding rules to classify traffic on wivl4 ...
* - iptables -A POSTROUTING -t mangle -o wivl4 -m mark --mark 47 -j
CLASSIFY --set-class 5:47 [ ok ]
* - iptables -A POSTROUTING -t mangle -o wivl4 -m mark --mark 48 -j
CLASSIFY --set-class 5:48 [ ok ]
* - iptables -A POSTROUTING -t mangle -o wivl4 -m mark --mark 49 -j
CLASSIFY --set-class 5:49 [ ok ]
It is all added correctly. Now, I stop the traffic shaping:
* - iptables -D macfilter -m mac --mac-source 00:05:9e:80:e1:3b ...
[ ok ]
* - iptables -D macfilter_nat -t nat -m mac --mac-source
00:05:9e:80:e1:3b ... [ ok ]
* - Deleting rules to flag VoIP traffic ...
* - iptables -D PREROUTING -t mangle -p udp -m mac --mac-source
00:05:9e:80:e1:3b -m multiport --ports 53,4569,5060,10000:20000 -j MARK
--set-mark 47 ... [ ok ]
* - iptables -D PREROUTING -t mangle -p tcp -m mac --mac-source
00:05:9e:80:e1:3b -m multiport --ports 22,23,53 -j MARK --set-mark 47
... [ ok ]
* - iptables -D PREROUTING -t mangle -p icmp -m mac --mac-source
00:05:9e:80:e1:3b -j MARK --set-mark 47 ...
[ ok ]
* - iptables -D PREROUTING -t mangle -m mark --mark 47 -j CONNMARK
--save-mark ... [ ok ]
* - Deleting rules to flag P2P traffic ...
* - iptables -D PREROUTING -t mangle -m mac --mac-source
00:05:9e:80:e1:3b -m ipp2p --ipp2p -j MARK
--set-mark 48 ...
[ ok ]
* - iptables -D PREROUTING -t mangle -m mark --mark 48 -j CONNMARK
--save-mark ... [ ok ]
* - Deleting rules to flag General traffic ...
* - iptables -D PREROUTING -t mangle -m mac --mac-source
00:05:9e:80:e1:3b -j MARK --set-mar [ ok ]
* - iptables -D PREROUTING -t mangle -m mark --mark 49 -j CONNMARK
--save-mark ... [ ok ]
* - Deleting rules to classify traffic on br1 ...
* - iptables -D POSTROUTING -t mangle -o br1 -m mark --mark 47 -j
CLASSIFY --set-class 2:47 [ ok ]
* - iptables -D POSTROUTING -t mangle -o br1 -m mark --mark 48 -j
CLASSIFY --set-class 2:48 [ ok ]
* - iptables -D POSTROUTING -t mangle -o br1 -m mark --mark 49 -j
CLASSIFY --set-class 2:49 [ ok ]
* - Deleting rules to classify traffic on wivl4 ...
* - iptables -D POSTROUTING -t mangle -o wivl4 -m mark --mark 47 -j
CLASSIFY --set-class 5:47 [ ok ]
* - iptables -D POSTROUTING -t mangle -o wivl4 -m mark --mark 48 -j
CLASSIFY --set-class 5:48 [ ok ]
* - iptables -D POSTROUTING -t mangle -o wivl4 -m mark --mark 49 -j
CLASSIFY --set-class 5:49 [ ok ]
* Deleting bandwidth management for gsoule ...
* - Deleting classes on br1 for upload control ...
* - tc class del dev br1 parent 2:46 classid 2:47 hfsc sc umax
1500b dmax 30ms rate 80Kbit . [ ok ]
* - tc class del dev br1 parent 2:46 classid 2:48 hfsc ls m2
152.0Kbit ul m2 152.0Kbit ... [ ok ]
* - tc class del dev br1 parent 2:46 classid 2:49 hfsc rt m2
76.00Kbit ls m2 152.0Kbit ul m2 304Kbit
...
[ ok ]
* - tc class del dev br1 parent 2:0 classid 2:46 hfsc ls m1
576.0Kbit d 2000ms m2 192.0Kbit ul m2 384Kbit ...
* >>>>> RTNETLINK answers: Device or resource busy
[ !! ]
* - Deleting classes on wivl4 for download control ...
* - tc class del dev wivl4 parent 5:46 classid 5:47 hfsc sc umax
1500b dmax 30ms rate 80Kbit [ ok ]
* - tc class del dev wivl4 parent 5:46 classid 5:48 hfsc ls m2
472.0Kbit ul m2 472.0Kbit ... [ ok ]
* - tc class del dev wivl4 parent 5:46 classid 5:49 hfsc rt m2
236.00Kbit ls m2 472.0Kbit ul m2 944Kbit ...
[ ok ]
* - tc class del dev eth1 parent 5:0 classid 5:46 hfsc ls m1
1536.0Kbit d 2000ms m2 256.00Kbit ul m2
1024Kbit ...
* >>>>> RTNETLINK answers: No such file or directory
[ !! ]
Those two rules do not get removed. I do not understand why they are
failing. The del rules are exactly the same as the add rules, except
they say del instead of add. I can clear the rules by deleting the root
qdiscs on the interface, but that removes all rules for the entire
interface, which is not the desired operation.
Also, a quick test by hand shows that it is only from having a child
class assigned to it that it becomes un-deletable.
This works fine:
wireless-r1 raddb # tc class add dev wivl4 parent 5:0 classid 5:56 hfsc
ls m1 1536.0Kbit d 2000ms m2 256.00Kbit ul m2 1024Kbit
wireless-r1 raddb # tc class del dev wivl4 parent 5:0 classid 5:56 hfsc
ls m1 1536.0Kbit d 2000ms m2 256.00Kbit ul m2 1024Kbit
This does not:
wireless-r1 raddb # tc class add dev wivl4 parent 5:0 classid 5:56 hfsc
ls m1 1536.0Kbit d 2000ms m2 256.00Kbit ul m2 1024Kbit
wireless-r1 raddb # tc class add dev wivl4 parent 5:56 classid 5:57 hfsc
sc umax 1500b dmax 30ms rate 80Kbit
wireless-r1 raddb # tc class del dev wivl4 parent 5:56 classid 5:57 hfsc
sc umax 1500b dmax 30ms rate 80Kbit
wireless-r1 raddb # tc class del dev wivl4 parent 5:0 classid 5:56 hfsc
ls m1 1536.0Kbit d 2000ms m2 256.00Kbit ul m2 1024Kbit
RTNETLINK answers: Device or resource busy
I have looked everywhere trying to figure this out. Does anyone have any
ideas?
Thanks.
Eliot Gable
Certified Wireless Network Administrator (CWNA)
Certified Wireless Security Professional (CWSP)
Cisco Certified Network Associate (CCNA)
CompTIA Security+ Certified
CompTIA Network+ Certified
Network and Systems Administrator
Great Lakes Internet, Inc.
112 North Howard
Croswell, MI 48422
(810) 679-3395
(877) 558-8324
Now offering Broadband Wireless Internet access in Croswell, Lexington,
Brown City, Yale, and Sandusky. Call for details.
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply
* Daily Xen Builds
From: David F. Barrera @ 2006-05-09 18:08 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 1457 bytes --]
May 9, 2006, using xen-unstable changeset:
changeset: 9960:1e3977e029fd
tag: tip
user: cl349@firebug.cl.cam.ac.uk
date: Mon May 8 13:21:41 2006 +0100
summary: Fix PAE build: add CONFIG_I2O_EXT_ADAPTEC_DMA64=y to linux-defconfig_xen_x86_32.
x86_32 (no PAE support)
* SLES 9 SP2 on IBM xSeries 235(512MB RAM)
* Builds and boots without problems
* Able to create fully functional guest domains
* Ran xm-test on all boxes
ISSUES:
x86_32 (PAE)
* SLES 9 SP2 on xSeries 335 and HS20 Blade 8843and FC4 on IBM
xSeries 335s
* Builds and boots without problems
* Able to create fully functional guest domains
* Ran xm-test on all boxes
ISSUES:
x86_64 (SLES 9 SP2 IBM HS20 Blades 8843 41U)
* Builds and boots without problems
* Able to create fully functional guest domains
* Ran xm-test on all boxes
ISSUES:
--XM-TEST Results--
SUMMARY:
Platform | PASS | FAIL | XPASS | XFAIL |
---------------------+------+------+-------+-------+
hs20.1.sles9-x86_64 | 107 | 8 | 0 | 3 |
hs20.rhel4-x86_32pae | 107 | 8 | 0 | 3 |
x235sles9nonpae | 96 | 18 | 0 | 3 |
x335sles9_pae4gb | 74 | 41 | 0 | 3 |
--
Regards,
David F Barrera
Linux Technology Center
Systems and Technology Group, IBM
"The wisest men follow their own direction. "
Euripides
[-- Attachment #2: hs20.1.sles9-x86_64.report --]
[-- Type: text/plain, Size: 842 bytes --]
Xm-test execution summary:
PASS: 107
FAIL: 8
XPASS: 0
XFAIL: 3
Details:
FAIL: 01_block_attach_device_pos
block-attach failed device did not switch to Connected state
FAIL: 02_block_attach_file_device_pos
block-attach failed device did not switch to Connected state
FAIL: 04_block_attach_device_repeatedly_pos
Device is not actually attached to domU
FAIL: 05_block_attach_and_dettach_device_repeatedly_pos
block-attach failed device did not switch to Connected state
FAIL: 01_enforce_dom0_cpus_basic_pos
/proc/cpuinfo says xend didn't enforce dom0_cpus (3 != 1)
XFAIL: 02_network_local_ping_pos
ping loopback failed for size 65507. ping eth0 failed for size 65507.
XFAIL: 05_network_dom0_ping_pos
Ping to dom0 failed for size 65507.
XFAIL: 11_network_domU_ping_pos
Ping failed for size 65507.
[-- Attachment #3: hs20.rhel4-x86_32pae.report --]
[-- Type: text/plain, Size: 815 bytes --]
Xm-test execution summary:
PASS: 107
FAIL: 8
XPASS: 0
XFAIL: 3
Details:
FAIL: 01_block_attach_device_pos
block-attach failed device did not switch to Connected state
FAIL: 02_block_attach_file_device_pos
block-attach failed device did not switch to Connected state
FAIL: 04_block_attach_device_repeatedly_pos
Device is not actually attached to domU
FAIL: 05_block_attach_and_dettach_device_repeatedly_pos
block-attach failed device did not switch to Connected state
FAIL: 01_migrate_localhost_pos
xm migrate returned invalid 256 != 0
XFAIL: 02_network_local_ping_pos
ping loopback failed for size 65507. ping eth0 failed for size 65507.
XFAIL: 05_network_dom0_ping_pos
Ping to dom0 failed for size 65507.
XFAIL: 11_network_domU_ping_pos
Ping failed for size 65507.
[-- Attachment #4: x235sles9nonpae.report --]
[-- Type: text/plain, Size: 1419 bytes --]
Xm-test execution summary:
PASS: 96
FAIL: 18
XPASS: 0
XFAIL: 3
Details:
FAIL: 01_block_attach_device_pos
block-attach failed device did not switch to Connected state
FAIL: 02_block_attach_file_device_pos
block-attach failed device did not switch to Connected state
FAIL: 04_block_attach_device_repeatedly_pos
Device is not actually attached to domU
FAIL: 05_block_attach_and_dettach_device_repeatedly_pos
block-attach failed device did not switch to Connected state
FAIL: 13_create_multinic_pos
(0 nics) Failed to create domain
XFAIL: 02_network_local_ping_pos
Failed to create domain
FAIL: 03_network_local_tcp_pos
Failed to create domain
FAIL: 04_network_local_udp_pos
Failed to create domain
XFAIL: 05_network_dom0_ping_pos
Failed to create domain
FAIL: 06_network_dom0_tcp_pos
Failed to create domain
FAIL: 07_network_dom0_udp_pos
Failed to create domain
XFAIL: 11_network_domU_ping_pos
Failed to create domain
FAIL: 12_network_domU_tcp_pos
Failed to create domain
FAIL: 13_network_domU_udp_pos
Failed to create domain
FAIL: 01_network_attach_pos
xm network-attach returned invalid 256 != 0
FAIL: 02_network_attach_detach_pos
xm network-attach returned invalid 256 != 0
FAIL: 03_network_attach_detach_multiple_pos
xm network-attach returned invalid 256 != 0
FAIL: 04_restore_withdevices_pos
Failed to create domain
[-- Attachment #5: x335sles9_pae4gb.report --]
[-- Type: text/plain, Size: 2355 bytes --]
Xm-test execution summary:
PASS: 74
FAIL: 41
XPASS: 0
XFAIL: 3
Details:
FAIL: 01_block_attach_device_pos
block-attach failed device did not switch to Connected state
FAIL: 02_block_attach_file_device_pos
Unknown reason
FAIL: 04_block_attach_device_repeatedly_pos
Unknown reason
FAIL: 05_block_attach_and_dettach_device_repeatedly_pos
block-attach failed device did not switch to Connected state
FAIL: 07_block_attach_baddevice_neg
Unknown reason
FAIL: 08_block_attach_bad_filedevice_neg
Unknown reason
FAIL: 09_block_attach_and_dettach_device_check_data_pos
Unknown reason
FAIL: 12_block_attach_shared_domU
Unknown reason
FAIL: 01_block-destroy_btblock_pos
Unknown reason
FAIL: 06_block-destroy_check_list_pos
Unknown reason
FAIL: 01_block-list_pos
Unknown reason
FAIL: 03_block-list_anotherbd_pos
Unknown reason
FAIL: 01_create_basic_pos
Unknown reason
FAIL: 11_create_concurrent_pos
Unknown reason
FAIL: 12_create_concurrent_stress_pos
Unknown reason
FAIL: 13_create_multinic_pos
Unknown reason
FAIL: 01_destroy_basic_pos
Unknown reason
FAIL: 07_destroy_stale_pos
Unknown reason
FAIL: 01_enforce_dom0_cpus_basic_pos
/proc/cpuinfo says xend didn't enforce dom0_cpus (2 != 1)
FAIL: 04_list_goodparm_pos
Unknown reason
FAIL: 01_memset_basic_pos
Unknown reason
FAIL: 03_memset_random_pos
Unknown reason
FAIL: 04_memset_smallmem_pos
Unknown reason
FAIL: 01_migrate_localhost_pos
Unknown reason
XFAIL: 02_network_local_ping_pos
Unknown reason
FAIL: 04_network_local_udp_pos
Unknown reason
XFAIL: 05_network_dom0_ping_pos
Ping to dom0 failed for size 65507.
FAIL: 06_network_dom0_tcp_pos
Unknown reason
FAIL: 07_network_dom0_udp_pos
Unknown reason
XFAIL: 11_network_domU_ping_pos
Ping failed for size 65507.
FAIL: 13_network_domU_udp_pos
Unknown reason
FAIL: 01_network_attach_pos
Unknown reason
FAIL: 02_network_attach_detach_pos
Unknown reason
FAIL: 01_pause_basic_pos
Unknown reason
FAIL: 01_reboot_basic_pos
Unknown reason
FAIL: 01_restore_basic_pos
Unknown reason
FAIL: 03_save_bogusfile_neg
Unknown reason
FAIL: 01_shutdown_basic_pos
Unknown reason
FAIL: 02_sysrq_sync_pos
Unknown reason
FAIL: 03_sysrq_withreboot_pos
Unknown reason
FAIL: 01_unpause_basic_pos
Unknown reason
[-- Attachment #6: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.