1 Index: linux-2.6.35.8/arch/mips/mm/cache.c
2 ===================================================================
3 --- linux-2.6.35.8.orig/arch/mips/mm/cache.c 2010-10-29 06:52:43.000000000 +0200
4 +++ linux-2.6.35.8/arch/mips/mm/cache.c 2010-11-01 11:38:06.000000000 +0100
6 void (*_dma_cache_inv)(unsigned long start, unsigned long size);
8 EXPORT_SYMBOL(_dma_cache_wback_inv);
9 +EXPORT_SYMBOL(_dma_cache_wback);
10 +EXPORT_SYMBOL(_dma_cache_inv);
12 #endif /* CONFIG_DMA_NONCOHERENT */
14 Index: linux-2.6.35.8/net/atm/proc.c
15 ===================================================================
16 --- linux-2.6.35.8.orig/net/atm/proc.c 2010-10-29 06:52:43.000000000 +0200
17 +++ linux-2.6.35.8/net/atm/proc.c 2010-11-01 11:38:36.000000000 +0100
19 static void pvc_info(struct seq_file *seq, struct atm_vcc *vcc)
21 static const char *const class_name[] = {
22 - "off", "UBR", "CBR", "VBR", "ABR"};
23 + "off","UBR","CBR","NTR-VBR","ABR","ANY","RT-VBR","UBR+","GFR" };
24 static const char *const aal_name[] = {
25 "---", "1", "2", "3/4", /* 0- 3 */
26 "???", "5", "???", "???", /* 4- 7 */
27 Index: linux-2.6.35.8/net/atm/common.c
28 ===================================================================
29 --- linux-2.6.35.8.orig/net/atm/common.c 2010-10-29 06:52:43.000000000 +0200
30 +++ linux-2.6.35.8/net/atm/common.c 2010-11-01 11:39:17.000000000 +0100
32 write_unlock_irq(&vcc_sklist_lock);
35 +struct sk_buff* (*ifx_atm_alloc_tx)(struct atm_vcc *, unsigned int) = NULL;
36 +EXPORT_SYMBOL(ifx_atm_alloc_tx);
38 static struct sk_buff *alloc_tx(struct atm_vcc *vcc, unsigned int size)
41 struct sock *sk = sk_atm(vcc);
43 + if (ifx_atm_alloc_tx != NULL)
44 + return ifx_atm_alloc_tx(vcc, size);
46 if (sk_wmem_alloc_get(sk) && !atm_may_send(vcc, size)) {
47 pr_debug("Sorry: wmem_alloc = %d, size = %d, sndbuf = %d\n",
48 sk_wmem_alloc_get(sk), size, sk->sk_sndbuf);