Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4897313a
Commit
4897313a
authored
Mar 16, 2011
by
Tony Luck
Browse files
Options
Browse Files
Download
Plain Diff
Pull misc-2.6.39 into release branch
parents
521cb40b
b4a6b343
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
3 deletions
+10
-3
arch/ia64/configs/generic_defconfig
arch/ia64/configs/generic_defconfig
+1
-0
arch/ia64/configs/gensparse_defconfig
arch/ia64/configs/gensparse_defconfig
+1
-0
arch/ia64/include/asm/dma-mapping.h
arch/ia64/include/asm/dma-mapping.h
+2
-0
arch/ia64/kernel/mca.c
arch/ia64/kernel/mca.c
+4
-1
arch/ia64/sn/kernel/setup.c
arch/ia64/sn/kernel/setup.c
+1
-1
arch/ia64/sn/pci/tioca_provider.c
arch/ia64/sn/pci/tioca_provider.c
+1
-1
No files found.
arch/ia64/configs/generic_defconfig
View file @
4897313a
...
...
@@ -233,3 +233,4 @@ CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRC_T10DIF=y
CONFIG_MISC_DEVICES=y
arch/ia64/configs/gensparse_defconfig
View file @
4897313a
...
...
@@ -208,3 +208,4 @@ CONFIG_MAGIC_SYSRQ=y
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_CRYPTO_MD5=y
CONFIG_MISC_DEVICES=y
arch/ia64/include/asm/dma-mapping.h
View file @
4897313a
...
...
@@ -12,6 +12,8 @@
#define ARCH_HAS_DMA_GET_REQUIRED_MASK
#define DMA_ERROR_CODE 0
extern
struct
dma_map_ops
*
dma_ops
;
extern
struct
ia64_machine_vector
ia64_mv
;
extern
void
set_iommu_machvec
(
void
);
...
...
arch/ia64/kernel/mca.c
View file @
4897313a
...
...
@@ -582,6 +582,8 @@ ia64_mca_cpe_int_handler (int cpe_irq, void *arg)
/* Get the CPE error record and log it */
ia64_mca_log_sal_error_record
(
SAL_INFO_TYPE_CPE
);
local_irq_disable
();
return
IRQ_HANDLED
;
}
...
...
@@ -1859,7 +1861,8 @@ ia64_mca_cpu_init(void *cpu_data)
data
=
mca_bootmem
();
first_time
=
0
;
}
else
data
=
__get_free_pages
(
GFP_KERNEL
,
get_order
(
sz
));
data
=
(
void
*
)
__get_free_pages
(
GFP_KERNEL
,
get_order
(
sz
));
if
(
!
data
)
panic
(
"Could not allocate MCA memory for cpu %d
\n
"
,
cpu
);
...
...
arch/ia64/sn/kernel/setup.c
View file @
4897313a
...
...
@@ -592,7 +592,7 @@ void __cpuinit sn_cpu_init(void)
/*
* Don't check status. The SAL call is not supported on all PROMs
* but a failure is harmless.
* Architec
htual
lly, cpu_init is always called twice on cpu 0. We
* Architec
tura
lly, cpu_init is always called twice on cpu 0. We
* should set cpu_number on cpu 0 once.
*/
if
(
cpuid
==
0
)
{
...
...
arch/ia64/sn/pci/tioca_provider.c
View file @
4897313a
...
...
@@ -509,7 +509,7 @@ tioca_dma_unmap(struct pci_dev *pdev, dma_addr_t bus_addr, int dir)
* use the GART mapped mode.
*/
static
u64
tioca_dma_map
(
struct
pci_dev
*
pdev
,
u
64
paddr
,
size_t
byte_count
,
int
dma_flags
)
tioca_dma_map
(
struct
pci_dev
*
pdev
,
u
nsigned
long
paddr
,
size_t
byte_count
,
int
dma_flags
)
{
u64
mapaddr
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment