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
b197ba3c
Commit
b197ba3c
authored
Jul 01, 2006
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull acpi_os_free into release branch
parents
fc25465f
02438d87
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
36 additions
and
45 deletions
+36
-45
arch/ia64/kernel/acpi-ext.c
arch/ia64/kernel/acpi-ext.c
+1
-1
arch/ia64/kernel/acpi.c
arch/ia64/kernel/acpi.c
+6
-6
drivers/acpi/acpi_memhotplug.c
drivers/acpi/acpi_memhotplug.c
+2
-2
drivers/acpi/asus_acpi.c
drivers/acpi/asus_acpi.c
+3
-3
drivers/acpi/battery.c
drivers/acpi/battery.c
+2
-2
drivers/acpi/container.c
drivers/acpi/container.c
+1
-1
drivers/acpi/glue.c
drivers/acpi/glue.c
+4
-4
drivers/acpi/namespace/nsxfeval.c
drivers/acpi/namespace/nsxfeval.c
+1
-1
drivers/acpi/osl.c
drivers/acpi/osl.c
+1
-8
drivers/acpi/processor_idle.c
drivers/acpi/processor_idle.c
+1
-1
drivers/acpi/processor_perflib.c
drivers/acpi/processor_perflib.c
+3
-3
drivers/acpi/scan.c
drivers/acpi/scan.c
+2
-2
drivers/acpi/system.c
drivers/acpi/system.c
+2
-2
drivers/acpi/utilities/utalloc.c
drivers/acpi/utilities/utalloc.c
+2
-2
drivers/acpi/utilities/utcache.c
drivers/acpi/utilities/utcache.c
+1
-1
drivers/acpi/utils.c
drivers/acpi/utils.c
+2
-2
drivers/acpi/video.c
drivers/acpi/video.c
+1
-1
include/acpi/acmacros.h
include/acpi/acmacros.h
+1
-1
include/acpi/acpiosxf.h
include/acpi/acpiosxf.h
+0
-2
No files found.
arch/ia64/kernel/acpi-ext.c
View file @
b197ba3c
...
...
@@ -50,7 +50,7 @@ static acpi_status hp_ccsr_locate(acpi_handle obj, u64 *base, u64 *length)
memcpy
(
length
,
vendor
->
byte_data
+
8
,
sizeof
(
*
length
));
exit:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
arch/ia64/kernel/acpi.c
View file @
b197ba3c
...
...
@@ -856,7 +856,7 @@ int acpi_map_lsapic(acpi_handle handle, int *pcpu)
obj
=
buffer
.
pointer
;
if
(
obj
->
type
!=
ACPI_TYPE_BUFFER
||
obj
->
buffer
.
length
<
sizeof
(
*
lsapic
))
{
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
-
EINVAL
;
}
...
...
@@ -864,13 +864,13 @@ int acpi_map_lsapic(acpi_handle handle, int *pcpu)
if
((
lsapic
->
header
.
type
!=
ACPI_MADT_LSAPIC
)
||
(
!
lsapic
->
flags
.
enabled
))
{
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
-
EINVAL
;
}
physid
=
((
lsapic
->
id
<<
8
)
|
(
lsapic
->
eid
));
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
buffer
.
length
=
ACPI_ALLOCATE_BUFFER
;
buffer
.
pointer
=
NULL
;
...
...
@@ -934,20 +934,20 @@ acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret)
obj
=
buffer
.
pointer
;
if
(
obj
->
type
!=
ACPI_TYPE_BUFFER
||
obj
->
buffer
.
length
<
sizeof
(
*
iosapic
))
{
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
AE_OK
;
}
iosapic
=
(
struct
acpi_table_iosapic
*
)
obj
->
buffer
.
pointer
;
if
(
iosapic
->
header
.
type
!=
ACPI_MADT_IOSAPIC
)
{
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
AE_OK
;
}
gsi_base
=
iosapic
->
global_irq_base
;
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
/*
* OK, it's an IOSAPIC MADT entry, look for a _PXM value to tell
...
...
drivers/acpi/acpi_memhotplug.c
View file @
b197ba3c
...
...
@@ -466,7 +466,7 @@ static acpi_status is_memory_device(acpi_handle handle)
info
=
buffer
.
pointer
;
if
(
!
(
info
->
valid
&
ACPI_VALID_HID
))
{
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
AE_ERROR
;
}
...
...
@@ -475,7 +475,7 @@ static acpi_status is_memory_device(acpi_handle handle)
(
strcmp
(
hardware_id
,
ACPI_MEMORY_DEVICE_HID
)))
status
=
AE_ERROR
;
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
drivers/acpi/asus_acpi.c
View file @
b197ba3c
...
...
@@ -1017,7 +1017,7 @@ static int asus_hotk_get_info(void)
}
hotk
->
methods
=
&
model_conf
[
hotk
->
model
];
acpi_os_
free
(
model
);
k
free
(
model
);
return
AE_OK
;
}
...
...
@@ -1096,7 +1096,7 @@ static int asus_hotk_get_info(void)
/* S1300A reports L84F, but L1400B too, account for that */
}
acpi_os_
free
(
model
);
k
free
(
model
);
return
AE_OK
;
}
...
...
@@ -1256,7 +1256,7 @@ static void __exit asus_acpi_exit(void)
acpi_bus_unregister_driver
(
&
asus_hotk_driver
);
remove_proc_entry
(
PROC_ASUS
,
acpi_root_dir
);
acpi_os_
free
(
asus_info
);
k
free
(
asus_info
);
return
;
}
...
...
drivers/acpi/battery.c
View file @
b197ba3c
...
...
@@ -171,7 +171,7 @@ acpi_battery_get_info(struct acpi_battery *battery,
}
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
if
(
!
result
)
(
*
bif
)
=
(
struct
acpi_battery_info
*
)
data
.
pointer
;
...
...
@@ -231,7 +231,7 @@ acpi_battery_get_status(struct acpi_battery *battery,
}
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
if
(
!
result
)
(
*
bst
)
=
(
struct
acpi_battery_status
*
)
data
.
pointer
;
...
...
drivers/acpi/container.c
View file @
b197ba3c
...
...
@@ -236,7 +236,7 @@ container_walk_namespace_cb(acpi_handle handle,
}
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
AE_OK
;
}
...
...
drivers/acpi/glue.c
View file @
b197ba3c
...
...
@@ -152,7 +152,7 @@ static int get_root_bridge_busnr(acpi_handle handle)
bbn
=
bus
;
}
exit:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
(
int
)
bbn
;
}
...
...
@@ -192,7 +192,7 @@ find_pci_rootbridge(acpi_handle handle, u32 lvl, void *context, void **rv)
find
->
handle
=
handle
;
status
=
AE_OK
;
exit:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
@@ -224,7 +224,7 @@ do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)
info
=
buffer
.
pointer
;
if
(
info
->
address
==
find
->
address
)
find
->
handle
=
handle
;
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
}
return
AE_OK
;
}
...
...
@@ -330,7 +330,7 @@ static int acpi_platform_notify(struct device *dev)
acpi_get_name
(
dev
->
firmware_data
,
ACPI_FULL_PATHNAME
,
&
buffer
);
DBG
(
"Device %s -> %s
\n
"
,
dev
->
bus_id
,
(
char
*
)
buffer
.
pointer
);
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
}
else
DBG
(
"Device %s -> No ACPI support
\n
"
,
dev
->
bus_id
);
#endif
...
...
drivers/acpi/namespace/nsxfeval.c
View file @
b197ba3c
...
...
@@ -133,7 +133,7 @@ acpi_evaluate_object_typed(acpi_handle handle,
/* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */
acpi_os_free
(
return_buffer
->
pointer
);
ACPI_FREE
(
return_buffer
->
pointer
);
return_buffer
->
pointer
=
NULL
;
}
...
...
drivers/acpi/osl.c
View file @
b197ba3c
...
...
@@ -146,13 +146,6 @@ void *acpi_os_allocate(acpi_size size)
return
kmalloc
(
size
,
GFP_KERNEL
);
}
void
acpi_os_free
(
void
*
ptr
)
{
kfree
(
ptr
);
}
EXPORT_SYMBOL
(
acpi_os_free
);
acpi_status
acpi_os_get_root_pointer
(
u32
flags
,
struct
acpi_pointer
*
addr
)
{
if
(
efi_enabled
)
{
...
...
@@ -742,7 +735,7 @@ acpi_status acpi_os_delete_semaphore(acpi_handle handle)
ACPI_DEBUG_PRINT
((
ACPI_DB_MUTEX
,
"Deleting semaphore[%p].
\n
"
,
handle
));
acpi_os_
free
(
sem
);
k
free
(
sem
);
sem
=
NULL
;
return
AE_OK
;
...
...
drivers/acpi/processor_idle.c
View file @
b197ba3c
...
...
@@ -768,7 +768,7 @@ static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
status
=
-
EFAULT
;
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
drivers/acpi/processor_perflib.c
View file @
b197ba3c
...
...
@@ -216,7 +216,7 @@ static int acpi_processor_get_performance_control(struct acpi_processor *pr)
sizeof
(
struct
acpi_pct_register
));
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
result
;
}
...
...
@@ -294,7 +294,7 @@ static int acpi_processor_get_performance_states(struct acpi_processor *pr)
}
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
result
;
}
...
...
@@ -592,7 +592,7 @@ static int acpi_processor_get_psd(struct acpi_processor *pr)
}
end:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
result
;
}
...
...
drivers/acpi/scan.c
View file @
b197ba3c
...
...
@@ -319,7 +319,7 @@ static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
goto
end
;
}
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
device
->
wakeup
.
flags
.
valid
=
1
;
/* Power button, Lid switch always enable wakeup */
...
...
@@ -854,7 +854,7 @@ static void acpi_device_set_id(struct acpi_device *device,
printk
(
KERN_ERR
"Memory allocation error
\n
"
);
}
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
}
static
int
acpi_device_set_context
(
struct
acpi_device
*
device
,
int
type
)
...
...
drivers/acpi/system.c
View file @
b197ba3c
...
...
@@ -86,7 +86,7 @@ acpi_system_read_dsdt(struct file *file,
res
=
simple_read_from_buffer
(
buffer
,
count
,
ppos
,
dsdt
.
pointer
,
dsdt
.
length
);
acpi_os_
free
(
dsdt
.
pointer
);
k
free
(
dsdt
.
pointer
);
return
res
;
}
...
...
@@ -113,7 +113,7 @@ acpi_system_read_fadt(struct file *file,
res
=
simple_read_from_buffer
(
buffer
,
count
,
ppos
,
fadt
.
pointer
,
fadt
.
length
);
acpi_os_
free
(
fadt
.
pointer
);
k
free
(
fadt
.
pointer
);
return
res
;
}
...
...
drivers/acpi/utilities/utalloc.c
View file @
b197ba3c
...
...
@@ -166,10 +166,10 @@ acpi_status acpi_ut_delete_caches(void)
/* Free memory lists */
acpi_os_free
(
acpi_gbl_global_list
);
ACPI_FREE
(
acpi_gbl_global_list
);
acpi_gbl_global_list
=
NULL
;
acpi_os_free
(
acpi_gbl_ns_node_list
);
ACPI_FREE
(
acpi_gbl_ns_node_list
);
acpi_gbl_ns_node_list
=
NULL
;
#endif
...
...
drivers/acpi/utilities/utcache.c
View file @
b197ba3c
...
...
@@ -162,7 +162,7 @@ acpi_status acpi_os_delete_cache(struct acpi_memory_list * cache)
/* Now we can delete the cache object */
acpi_os_free
(
cache
);
ACPI_FREE
(
cache
);
return
(
AE_OK
);
}
...
...
drivers/acpi/utils.c
View file @
b197ba3c
...
...
@@ -332,7 +332,7 @@ acpi_evaluate_string(acpi_handle handle,
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Return value [%s]\n", *data));
acpi_os_
free(buffer.pointer);
k
free(buffer.pointer);
return AE_OK;
}
...
...
@@ -418,7 +418,7 @@ acpi_evaluate_reference(acpi_handle handle,
//kfree(list->handles);
}
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
drivers/acpi/video.c
View file @
b197ba3c
...
...
@@ -1450,7 +1450,7 @@ static int acpi_video_device_enumerate(struct acpi_video_bus *video)
video
->
attached_array
=
active_device_list
;
video
->
attached_count
=
count
;
out:
acpi_os_
free
(
buffer
.
pointer
);
k
free
(
buffer
.
pointer
);
return
status
;
}
...
...
include/acpi/acmacros.h
View file @
b197ba3c
...
...
@@ -726,7 +726,7 @@
#define ACPI_ALLOCATE(a) acpi_ut_allocate((acpi_size)(a),_COMPONENT,_acpi_module_name,__LINE__)
#define ACPI_ALLOCATE_ZEROED(a) acpi_ut_allocate_zeroed((acpi_size)(a), _COMPONENT,_acpi_module_name,__LINE__)
#define ACPI_FREE(a)
acpi_os_
free(a)
#define ACPI_FREE(a)
k
free(a)
#define ACPI_MEM_TRACKING(a)
#else
...
...
include/acpi/acpiosxf.h
View file @
b197ba3c
...
...
@@ -143,8 +143,6 @@ void acpi_os_release_mutex(acpi_mutex handle);
*/
void
*
acpi_os_allocate
(
acpi_size
size
);
void
acpi_os_free
(
void
*
memory
);
acpi_status
acpi_os_map_memory
(
acpi_physical_address
physical_address
,
acpi_size
size
,
void
__iomem
**
logical_address
);
...
...
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