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
fa63ebcc
Commit
fa63ebcc
authored
Sep 21, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://gkernel.bkbits.net/net-drivers-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
cc777197
cc8f2609
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
Makefile
Makefile
+1
-1
drivers/block/genhd.c
drivers/block/genhd.c
+4
-0
mm/numa.c
mm/numa.c
+1
-0
No files found.
Makefile
View file @
fa63ebcc
VERSION
=
2
PATCHLEVEL
=
5
SUBLEVEL
=
3
7
SUBLEVEL
=
3
8
EXTRAVERSION
=
# *DOCUMENTATION*
...
...
drivers/block/genhd.c
View file @
fa63ebcc
...
...
@@ -174,6 +174,10 @@ static int show_partition(struct seq_file *part, void *v)
if
(
sgp
==
gendisk_head
)
seq_puts
(
part
,
"major minor #blocks name
\n\n
"
);
/* Don't show non-partitionable devices or empty devices */
if
(
!
sgp
->
minor_shift
||
!
get_capacity
(
sgp
))
return
0
;
/* show the full disk and all non-0 size partitions of it */
seq_printf
(
part
,
"%4d %4d %10ld %s
\n
"
,
sgp
->
major
,
sgp
->
first_minor
,
...
...
mm/numa.c
View file @
fa63ebcc
...
...
@@ -27,6 +27,7 @@ void __init free_area_init_node(int nid, pg_data_t *pgdat, struct page *pmap,
{
unsigned
long
size
;
pgdat
=
&
contig_page_data
;
contig_page_data
.
node_id
=
0
;
contig_page_data
.
node_start_pfn
=
node_start_pfn
;
calculate_totalpages
(
&
contig_page_data
,
zones_size
,
zholes_size
);
...
...
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