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
7719f5a1
Commit
7719f5a1
authored
Oct 07, 2004
by
Richard Russon
Browse files
Options
Browse Files
Download
Plain Diff
Merge flatcap.org:/home/flatcap/backup/bk/ntfs-2.6
into flatcap.org:/home/flatcap/backup/bk/ntfs-2.6-devel
parents
6ca3ba60
627771b0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
16 deletions
+11
-16
arch/i386/kernel/apic.c
arch/i386/kernel/apic.c
+1
-1
arch/ppc64/configs/g5_defconfig
arch/ppc64/configs/g5_defconfig
+10
-9
drivers/ide/legacy/ide-cs.c
drivers/ide/legacy/ide-cs.c
+0
-6
No files found.
arch/i386/kernel/apic.c
View file @
7719f5a1
...
...
@@ -91,7 +91,7 @@ int get_physical_broadcast(void)
unsigned
int
lvr
,
version
;
lvr
=
apic_read
(
APIC_LVR
);
version
=
GET_APIC_VERSION
(
lvr
);
if
(
version
>=
0x14
)
if
(
!
APIC_INTEGRATED
(
version
)
||
version
>=
0x14
)
return
0xff
;
else
return
0xf
;
...
...
arch/ppc64/configs/g5_defconfig
View file @
7719f5a1
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.9-rc
2
# Thu
Sep 23 17:07:00
2004
# Linux kernel version: 2.6.9-rc
3
# Thu
Oct 7 15:18:38
2004
#
CONFIG_64BIT=y
CONFIG_MMU=y
...
...
@@ -69,7 +69,7 @@ CONFIG_PPC=y
CONFIG_PPC64=y
CONFIG_PPC_OF=y
CONFIG_ALTIVEC=y
CONFIG_
PMAC
_DART=y
CONFIG_
U3
_DART=y
CONFIG_PPC_PMAC64=y
CONFIG_BOOTX_TEXT=y
CONFIG_POWER4_ONLY=y
...
...
@@ -428,6 +428,7 @@ CONFIG_IP_NF_MATCH_OWNER=y
# CONFIG_IP_NF_MATCH_ADDRTYPE is not set
# CONFIG_IP_NF_MATCH_REALM is not set
# CONFIG_IP_NF_MATCH_SCTP is not set
# CONFIG_IP_NF_MATCH_COMMENT is not set
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_LOG=y
...
...
@@ -1044,8 +1045,8 @@ CONFIG_SYSFS=y
CONFIG_DEVPTS_FS_XATTR=y
# CONFIG_DEVPTS_FS_SECURITY is not set
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_RAMFS=y
#
...
...
@@ -1058,7 +1059,7 @@ CONFIG_RAMFS=y
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
CONFIG_CRAMFS=y
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
...
...
@@ -1174,7 +1175,7 @@ CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUGGER is not set
# CONFIG_PPCDBG is not set
# CONFIG_IRQSTACKS is not set
CONFIG_IRQSTACKS=y
# CONFIG_SCHEDSTATS is not set
#
...
...
@@ -1193,7 +1194,7 @@ CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
# CONFIG_CRYPTO_W
HIRLPOOL
is not set
# CONFIG_CRYPTO_W
P512
is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
...
...
@@ -1215,5 +1216,5 @@ CONFIG_CRYPTO_TEST=m
CONFIG_CRC_CCITT=m
CONFIG_CRC32=y
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=
m
CONFIG_ZLIB_INFLATE=
y
CONFIG_ZLIB_DEFLATE=m
drivers/ide/legacy/ide-cs.c
View file @
7719f5a1
...
...
@@ -412,12 +412,6 @@ void ide_release(dev_link_t *link)
/* FIXME: if this fails we need to queue the cleanup somehow
-- need to investigate the required PCMCIA magic */
ide_unregister
(
info
->
hd
);
/* deal with brain dead IDE resource management */
request_region
(
link
->
io
.
BasePort1
,
link
->
io
.
NumPorts1
,
info
->
node
.
dev_name
);
if
(
link
->
io
.
NumPorts2
)
request_region
(
link
->
io
.
BasePort2
,
link
->
io
.
NumPorts2
,
info
->
node
.
dev_name
);
}
info
->
ndev
=
0
;
link
->
dev
=
NULL
;
...
...
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