|
|
Up |
|
|
  |
Author: Izumi TsutsuiIzumi Tsutsui
Date: Jun 21, 2008 21:31
isaki@pastel-flower.jp wrote:
> 3) According to the discussion before
> ( http://mail-index.netbsd.org/tech-kern/2006/07/01/0000.html
> by yamt-san and tsutsui-san), The conversion by ipl2XXX_table[]
> should be in makeiplcookie() than splraiseipl() ?
>
> used in makeiplcookie(): atari, luna68k, hp300, mvme68k,
> news68k, next68k, sun68k, x68k
> used in splraiseipl(): amiga, cesfic, mac68k
Ah, now I realize why ipl2XXX_table[] is used in splraiseipl()
in those ports.
If ipl2XXX_table[] could be updated during cpu_configure(9),
we can't use an ipl2XXX_table[IPL_FOO] value as a cookie
because it could have a different value after cpu_configure(9)
if makeiplcookie(9) is called before cpu_configure(9).
On cesfic (and hp300), it could be rewriten to use static IPL values
in ipl2psl_table[]. (I'll fix them by myself)
On mac68k, ipl2psl_table[] is initialized in machdep.c:mac68k_init()
so it may be safe.
|
| Show full article (1.90Kb) |
|
| |
2 Comments |
|
  |
Author: Izumi TsutsuiIzumi Tsutsui
Date: Jun 13, 2008 19:40
I wrote:
> I prefer:
> 1) make makeiplcookie() inline (and export ipl2psl_table[])
> 2) use ipl2psl_table[] (including hp300 and mac68k)
> 3) put conversion into makeiplcookie(),
> but also put PSL_S into ipl2psl_table[]
> 4) use uint16_t (rather than u_short)
> 5) use _psl
Here is a diff for hp300, news68k and sun68ks:
(though -current hp300 and news68k kernels without DIAGNOSTIC get panic
in pmap_ptpage_addref() even without this patch)
---
|
| Show full article (8.19Kb) |
|
| |
4 Comments |
|
  |
Author: Paula GrassiPaula Grassi
Date: Jun 11, 2008 21:10
,
Saudaçoes. Tenho certeza que conhece a frase que diz: "Propaganda e a alma do
negocio". Por isso estou escrevendo para te lembrar da grande utilidade do email
marketing para a divulgaçao do seu negocio.
Os estao a sua disposiçao, mas estao tambem a disposiçao dos seus concorrentes.
Por isso conquiste primeiro este mercado antes que seja conquistado por outras
pessoas. Que tal iniciar a sua campanha esta semana?
Cordialmente,
Paula Grassi
http://www.divulgaemails.com
(0xx71)3491-9005 ou (0xx71)9932-0158(24h)
MSN e SKYPE: dvgmail
--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-admin@muc.de
|
| |
|
no comments
|
|
  |
Author: G.C.G.C.
Date: May 21, 2008 14:39
voz música áudio marketing Web Audio Plus, site com som voz no site, software
para inserir áudio em sites voz música áudio marketing, áudio no site site com
áudio, voz música áudio marketing como colocar audio em sites, mensagens em áudio
Web Audio Plus, voz música áudio marketing Web Audio Plus, Narração para sites
voz no site.
Visite: http://www.audiomarketing10.com
audio no site Narração para sites, áudio no site Web Audio Plus, site com áudio
como colocar audio em sites, mensagens de voz como colocar audio em sites, voz
música áudio marketing adicionar áudio, mensagens de voz Web Audio Plus, Web
Audio Plus voz no site. inserir som som em flash
Visite: http://www.audiomarketing10.com
inserir som som em flash site com som voz no site, software para inserir áudio
em sites voz música áudio marketing, áudio no site site com áudio, voz música
áudio marketing como colocar audio em sites, mensagens em áudio Web Audio Plus,
voz música áudio marketing Web Audio Plus, Narração para sites voz no site. audio
no site Narração para sites, áudio no site Web Audio Plus, site com áudio como
colocar audio em sites, mensagens de voz como colocar audio em sites, voz música
áudio marketing adicionar áudio, mensagens de voz Web Audio Plus, Web Audio Plus
voz no site.
|
| Show full article (1.45Kb) |
|
no comments
|
|
  |
Author: Difesa PersonaleDifesa Personale
Date: May 6, 2008 08:56
Spettabile,
da oggi sono disponibili gli SPRAY ANTIAGGRESSIONE nelle versioni
Penna Stilografica e Bomboletta Portachiavi.Per foto e informazioni cliccare su:
http://antiaggressione.vai.la
La sicurezza in tasca.Da portare sempre con se!
*Soddisfatti o rimborsati
*Garanzia e azienda Italiana
*Certificati CE
*Consegna in 3 giorni
*Garanzia 2 anni
Daniela Pezzotti - DalmaTech srl
--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-admin@muc.de
|
| |
|
no comments
|
|
  |
Author: Paulius ZaleckasPaulius Zaleckas
Date: May 5, 2008 15:48
Use net_device_stats from net_device structure instead of local.
Haven't tried to compile it. Need ack from m68k people!
Signed-off-by: Paulius Zaleckas
diff --git a/drivers/net/ariadne.c b/drivers/net/ariadne.c
index 10f3a19..6c66bd5 100644
--- a/drivers/net/ariadne.c
+++ b/drivers/net/ariadne.c
@@ -98,7 +98,6 @@ struct ariadne_private {
volatile u_short *rx_buff[RX_RING_SIZE];
int cur_tx, cur_rx; /* The next free ring entry */
int dirty_tx; /* The ring entries to be free()ed. */
- struct net_device_stats stats;
char tx_full;
};
@@ -384,14 +383,14 @@ static int ariadne_close(struct net_device *dev)
netif_stop_queue(dev);
|
| Show full article (5.01Kb) |
|
2 Comments |
|
  |
Author: Kurt J. LidlKurt J. Lidl
Date: May 3, 2008 21:36
I've been working on getting the mvme68k port to cross-build
from my sun4u build host. I think the following problem is
generic to the m68k toolchain that NetBSD uses.
I've worked through various issues, and with a recent pullup of
a fix from the gcc people, the compiler no longer errors out
when compiling various bits of libc (in particular the strtod.c file)
with -msoft-float specified.
So, my build (with -msoft-float turned on) now stops when it
attempts to link the first userland binary. (Which is either
bin/cat or gnu/usr.bin/bc, depending on whether I use -j 2,
or no -j flag at all.) The error at the failure is the same:
# compile bc/util.o
/nbsd/mvme68k/tools/bin/m68k--netbsdelf-gcc -O2 -pipe -m68040 -msoft-float -Werror -D_POSIX_SOURCE -funsigned-char -I. -I/nbsd/src/gnu/usr.bin/bc -I/nbsd/src/gnu/dist/bc/bc...
|
| Show full article (3.08Kb) |
|
no comments
|
|
  |
Author: Felice RosadoFelice Rosado
Date: Apr 27, 2008 18:19
Thousands of discounted, antiED oriented products shipped to the
customer discreetly. http://didstill.com
Felice Rosado
--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-admin@muc.de
|
| |
|
no comments
|
|
  |
|
|
  |
|
|
  |
Author: Dalma srlDalma srl
Date: Apr 9, 2008 07:22
Collare Luminoso per cani e gatti!
Non perdere mai di vista il tuo cane o gatto.Con il nuovo collare ad alta luminosita' sara' visibile fino a 800 metri!
Per foto e informazioni cliccare su;
http://collareluminoso.iscool.net o su http://collare.135.it
dove potra' trovare anche molte altre novita'!
*Soddisfatti o rimborsati
*Garanzia e azienda Italiana
*Certificati CE
*Consegna in 3 giorni
*Garanzia 2 anni
Daniela Pezzotti - DalmaTecg srl
--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-admin@muc.de
|
| |
|
no comments
|
|
|
|
|
|
|