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
nexedi
linux
Commits
e24c22ad
Commit
e24c22ad
authored
Feb 22, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://gkernel.bkbits.net/libata-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
d66bf085
c4d5e6fd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
13 deletions
+18
-13
arch/ppc/mm/pgtable.c
arch/ppc/mm/pgtable.c
+4
-1
arch/ppc/mm/tlb.c
arch/ppc/mm/tlb.c
+1
-1
arch/ppc64/xmon/xmon.c
arch/ppc64/xmon/xmon.c
+2
-0
drivers/input/mouse/alps.c
drivers/input/mouse/alps.c
+3
-3
drivers/md/dm-raid1.c
drivers/md/dm-raid1.c
+2
-2
fs/nfs/file.c
fs/nfs/file.c
+3
-3
include/linux/agp_backend.h
include/linux/agp_backend.h
+1
-1
include/linux/agpgart.h
include/linux/agpgart.h
+2
-2
No files found.
arch/ppc/mm/pgtable.c
View file @
e24c22ad
...
...
@@ -107,8 +107,11 @@ pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
ptepage
->
mapping
=
(
void
*
)
mm
;
ptepage
->
index
=
address
&
PMD_MASK
;
}
}
else
}
else
{
pte
=
(
pte_t
*
)
early_get_page
();
if
(
pte
)
clear_page
(
pte
);
}
return
pte
;
}
...
...
arch/ppc/mm/tlb.c
View file @
e24c22ad
...
...
@@ -62,7 +62,7 @@ void flush_hash_one_pte(pte_t *ptep)
ptepage
=
virt_to_page
(
ptep
);
mm
=
(
struct
mm_struct
*
)
ptepage
->
mapping
;
ptephys
=
__pa
(
ptep
)
&
PAGE_MASK
;
addr
=
ptepage
->
index
+
(((
unsigned
long
)
ptep
&
~
PAGE_MASK
)
<<
9
);
addr
=
ptepage
->
index
+
(((
unsigned
long
)
ptep
&
~
PAGE_MASK
)
<<
10
);
flush_hash_pages
(
mm
->
context
,
addr
,
ptephys
,
1
);
}
...
...
arch/ppc64/xmon/xmon.c
View file @
e24c22ad
...
...
@@ -628,11 +628,13 @@ int xmon_fault_handler(struct pt_regs *regs)
(data address breakpoint register) directly. */
static
void
set_controlled_dabr
(
unsigned
long
val
)
{
#ifdef CONFIG_PPC_PSERIES
if
(
systemcfg
->
platform
==
PLATFORM_PSERIES_LPAR
)
{
int
rc
=
plpar_hcall_norets
(
H_SET_DABR
,
val
);
if
(
rc
!=
H_Success
)
xmon_printf
(
"Warning: setting DABR failed (%d)
\n
"
,
rc
);
}
else
#endif
set_dabr
(
val
);
}
...
...
drivers/input/mouse/alps.c
View file @
e24c22ad
...
...
@@ -34,7 +34,7 @@ struct alps_model_info {
unsigned
char
signature
[
3
];
unsigned
char
model
;
}
alps_model_data
[]
=
{
{
{
0x33
,
0x02
,
0x0a
},
ALPS_MODEL_GLIDEPOINT
},
/* { { 0x33, 0x02, 0x0a }, ALPS_MODEL_GLIDEPOINT }, */
{
{
0x53
,
0x02
,
0x0a
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x53
,
0x02
,
0x14
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x63
,
0x02
,
0x0a
},
ALPS_MODEL_GLIDEPOINT
},
...
...
@@ -42,8 +42,8 @@ struct alps_model_info {
{
{
0x73
,
0x02
,
0x0a
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x73
,
0x02
,
0x14
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x63
,
0x02
,
0x28
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x63
,
0x02
,
0x3c
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x63
,
0x02
,
0x50
},
ALPS_MODEL_GLIDEPOINT
},
/* { { 0x63, 0x02, 0x3c }, ALPS_MODEL_GLIDEPOINT }, */
/* { { 0x63, 0x02, 0x50 }, ALPS_MODEL_GLIDEPOINT }, */
{
{
0x63
,
0x02
,
0x64
},
ALPS_MODEL_GLIDEPOINT
},
{
{
0x20
,
0x02
,
0x0e
},
ALPS_MODEL_DUALPOINT
},
{
{
0x22
,
0x02
,
0x0a
},
ALPS_MODEL_DUALPOINT
},
...
...
drivers/md/dm-raid1.c
View file @
e24c22ad
...
...
@@ -253,9 +253,9 @@ static struct region *__rh_alloc(struct region_hash *rh, region_t region)
else
{
__rh_insert
(
rh
,
nreg
);
if
(
nreg
->
state
==
RH_CLEAN
)
{
spin_lock
_irq
(
&
rh
->
region_lock
);
spin_lock
(
&
rh
->
region_lock
);
list_add
(
&
nreg
->
list
,
&
rh
->
clean_regions
);
spin_unlock
_irq
(
&
rh
->
region_lock
);
spin_unlock
(
&
rh
->
region_lock
);
}
reg
=
nreg
;
}
...
...
fs/nfs/file.c
View file @
e24c22ad
...
...
@@ -303,10 +303,10 @@ static int do_getlk(struct file *filp, int cmd, struct file_lock *fl)
status
=
NFS_PROTO
(
inode
)
->
lock
(
filp
,
cmd
,
fl
);
else
{
struct
file_lock
*
cfl
=
posix_test_lock
(
filp
,
fl
);
if
(
cfl
!=
NULL
)
{
fl
->
fl_type
=
F_UNLCK
;
if
(
cfl
!=
NULL
)
memcpy
(
fl
,
cfl
,
sizeof
(
*
fl
));
fl
->
fl_type
=
F_UNLCK
;
}
}
unlock_kernel
();
return
status
;
...
...
include/linux/agp_backend.h
View file @
e24c22ad
...
...
@@ -54,7 +54,7 @@ struct agp_kern_info {
struct
pci_dev
*
device
;
enum
chipset_type
chipset
;
unsigned
long
mode
;
off_t
aper_base
;
unsigned
long
aper_base
;
size_t
aper_size
;
int
max_memory
;
/* In pages */
int
current_memory
;
...
...
include/linux/agpgart.h
View file @
e24c22ad
...
...
@@ -64,7 +64,7 @@ typedef struct _agp_info {
struct
agp_version
version
;
/* version of the driver */
__u32
bridge_id
;
/* bridge vendor/device */
__u32
agp_mode
;
/* mode info of bridge */
off_t
aper_base
;
/* base of aperture */
unsigned
long
aper_base
;
/* base of aperture */
size_t
aper_size
;
/* size of aperture */
size_t
pg_total
;
/* max pages (swap + system) */
size_t
pg_system
;
/* max pages (system) */
...
...
@@ -118,7 +118,7 @@ struct agp_info {
struct
agp_version
version
;
/* version of the driver */
u32
bridge_id
;
/* bridge vendor/device */
u32
agp_mode
;
/* mode info of bridge */
off_t
aper_base
;
/* base of aperture */
unsigned
long
aper_base
;
/* base of aperture */
size_t
aper_size
;
/* size of aperture */
size_t
pg_total
;
/* max pages (swap + system) */
size_t
pg_system
;
/* max pages (system) */
...
...
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