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
18d83510
Commit
18d83510
authored
Nov 23, 2007
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import 2.3.34
parent
0b48ceff
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
9 deletions
+58
-9
arch/i386/defconfig
arch/i386/defconfig
+2
-2
drivers/pcmcia/cs.c
drivers/pcmcia/cs.c
+49
-0
fs/ext2/balloc.c
fs/ext2/balloc.c
+5
-5
fs/udf/balloc.c
fs/udf/balloc.c
+2
-2
No files found.
arch/i386/defconfig
View file @
18d83510
...
...
@@ -105,7 +105,6 @@ CONFIG_BLK_DEV_IDEPCI=y
# CONFIG_BLK_DEV_IDEDMA_PCI is not set
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_AEC6210 is not set
CONFIG_BLK_DEV_PIIX=y
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_BLK_CPQ_DA is not set
...
...
@@ -310,6 +309,7 @@ CONFIG_PCMCIA_PCNET=y
# CONFIG_PCMCIA_3C575 is not set
# CONFIG_PCMCIA_TULIP is not set
# CONFIG_PCMCIA_EPIC100 is not set
CONFIG_NET_PCMCIA_RADIO=y
CONFIG_PCMCIA_RAYCS=y
# CONFIG_PCMCIA_NETWAVE is not set
# CONFIG_PCMCIA_WAVELAN is not set
...
...
@@ -397,7 +397,7 @@ CONFIG_DRM_TDFX=y
# CONFIG_PCMCIA_SERIAL_CB is not set
#
#
Support for USB
#
USB support
#
# CONFIG_USB is not set
...
...
drivers/pcmcia/cs.c
View file @
18d83510
...
...
@@ -2229,6 +2229,55 @@ int CardServices(int func, void *a1, void *a2, void *a3)
OS-specific module glue goes here
======================================================================*/
EXPORT_SYMBOL
(
pcmcia_access_configuration_register
);
EXPORT_SYMBOL
(
pcmcia_adjust_resource_info
);
EXPORT_SYMBOL
(
pcmcia_check_erase_queue
);
EXPORT_SYMBOL
(
pcmcia_close_memory
);
EXPORT_SYMBOL
(
pcmcia_copy_memory
);
EXPORT_SYMBOL
(
pcmcia_deregister_client
);
EXPORT_SYMBOL
(
pcmcia_deregister_erase_queue
);
EXPORT_SYMBOL
(
pcmcia_get_first_client
);
EXPORT_SYMBOL
(
pcmcia_get_card_services_info
);
EXPORT_SYMBOL
(
pcmcia_get_configuration_info
);
EXPORT_SYMBOL
(
pcmcia_get_next_client
);
EXPORT_SYMBOL
(
pcmcia_get_first_region
);
EXPORT_SYMBOL
(
pcmcia_get_first_tuple
);
EXPORT_SYMBOL
(
pcmcia_get_next_region
);
EXPORT_SYMBOL
(
pcmcia_get_next_tuple
);
EXPORT_SYMBOL
(
pcmcia_get_status
);
EXPORT_SYMBOL
(
pcmcia_get_tuple_data
);
EXPORT_SYMBOL
(
pcmcia_map_mem_page
);
EXPORT_SYMBOL
(
pcmcia_modify_configuration
);
EXPORT_SYMBOL
(
pcmcia_modify_window
);
EXPORT_SYMBOL
(
pcmcia_open_memory
);
EXPORT_SYMBOL
(
pcmcia_parse_tuple
);
EXPORT_SYMBOL
(
pcmcia_read_memory
);
EXPORT_SYMBOL
(
pcmcia_register_client
);
EXPORT_SYMBOL
(
pcmcia_register_erase_queue
);
EXPORT_SYMBOL
(
pcmcia_register_mtd
);
EXPORT_SYMBOL
(
pcmcia_release_configuration
);
EXPORT_SYMBOL
(
pcmcia_release_io
);
EXPORT_SYMBOL
(
pcmcia_release_irq
);
EXPORT_SYMBOL
(
pcmcia_release_window
);
EXPORT_SYMBOL
(
pcmcia_request_configuration
);
EXPORT_SYMBOL
(
pcmcia_request_io
);
EXPORT_SYMBOL
(
pcmcia_request_irq
);
EXPORT_SYMBOL
(
pcmcia_request_window
);
EXPORT_SYMBOL
(
pcmcia_reset_card
);
EXPORT_SYMBOL
(
pcmcia_set_event_mask
);
EXPORT_SYMBOL
(
pcmcia_validate_cis
);
EXPORT_SYMBOL
(
pcmcia_write_memory
);
EXPORT_SYMBOL
(
pcmcia_bind_device
);
EXPORT_SYMBOL
(
pcmcia_bind_mtd
);
EXPORT_SYMBOL
(
pcmcia_report_error
);
EXPORT_SYMBOL
(
pcmcia_suspend_card
);
EXPORT_SYMBOL
(
pcmcia_resume_card
);
EXPORT_SYMBOL
(
pcmcia_eject_card
);
EXPORT_SYMBOL
(
pcmcia_insert_card
);
EXPORT_SYMBOL
(
pcmcia_replace_cis
);
EXPORT_SYMBOL
(
pcmcia_get_first_window
);
EXPORT_SYMBOL
(
pcmcia_get_next_window
);
EXPORT_SYMBOL
(
pcmcia_get_mem_page
);
EXPORT_SYMBOL
(
register_ss_entry
);
EXPORT_SYMBOL
(
unregister_ss_entry
);
...
...
fs/ext2/balloc.c
View file @
18d83510
...
...
@@ -118,8 +118,8 @@ static int read_block_bitmap (struct super_block * sb,
*
* Return the slot used to store the bitmap, or a -ve error code.
*/
static
int
load_
_block_bitmap
(
struct
super_block
*
sb
,
unsigned
int
block_group
)
static
int
__load
_block_bitmap
(
struct
super_block
*
sb
,
unsigned
int
block_group
)
{
int
i
,
j
,
retval
=
0
;
unsigned
long
block_bitmap_number
;
...
...
@@ -136,7 +136,7 @@ static int load__block_bitmap (struct super_block * sb,
if
(
sb
->
u
.
ext2_sb
.
s_block_bitmap_number
[
block_group
]
==
block_group
)
return
block_group
;
ext2_error
(
sb
,
"load_block_bitmap"
,
ext2_error
(
sb
,
"
__
load_block_bitmap"
,
"block_group != block_bitmap_number"
);
}
retval
=
read_block_bitmap
(
sb
,
block_group
,
block_group
);
...
...
@@ -192,7 +192,7 @@ static int load__block_bitmap (struct super_block * sb,
* Return the slot number of the group in the superblock bitmap cache's on
* success, or a -ve error code.
*
* There is still one inconsist
a
ncy here --- if the number of groups in this
* There is still one inconsist
e
ncy here --- if the number of groups in this
* filesystems is <= EXT2_MAX_GROUP_LOADED, then we have no way of
* differentiating between a group for which we have never performed a bitmap
* IO request, and a group for which the last bitmap read request failed.
...
...
@@ -224,7 +224,7 @@ static inline int load_block_bitmap (struct super_block * sb,
* If not, then do a full lookup for this block group.
*/
else
{
slot
=
load_
_block_bitmap
(
sb
,
block_group
);
slot
=
__load
_block_bitmap
(
sb
,
block_group
);
}
/*
...
...
fs/udf/balloc.c
View file @
18d83510
...
...
@@ -104,7 +104,7 @@ static int read_block_bitmap(struct super_block * sb, unsigned int block,
return
retval
;
}
static
int
load_
_block_bitmap
(
struct
super_block
*
sb
,
unsigned
int
block_group
)
static
int
__load
_block_bitmap
(
struct
super_block
*
sb
,
unsigned
int
block_group
)
{
int
i
,
j
,
retval
=
0
;
unsigned
long
block_bitmap_number
;
...
...
@@ -188,7 +188,7 @@ static inline int load_block_bitmap(struct super_block *sb,
}
else
{
slot
=
load_
_block_bitmap
(
sb
,
block_group
);
slot
=
__load
_block_bitmap
(
sb
,
block_group
);
}
if
(
slot
<
0
)
...
...
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