Skip to content

Commit

Permalink
agpgart.h: do not include <stdlib.h> from exported header
Browse files Browse the repository at this point in the history
Commit 35d0f1d ("include/uapi/linux/agpgart.h: include stdlib.h in
userspace") included <stdlib.h> to fix the unknown size_t error, but
I do not think it is the right fix.

This header already uses __kernel_size_t a few lines below.

Replace the remaining size_t, and stop including <stdlib.h>.

Signed-off-by: Masahiro Yamada <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
  • Loading branch information
masahir0y authored and arndb committed May 13, 2022
1 parent 3123109 commit 783eb35
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions include/uapi/linux/agpgart.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@

#ifndef __KERNEL__
#include <linux/types.h>
#include <stdlib.h>

struct agp_version {
__u16 major;
Expand All @@ -64,10 +63,10 @@ typedef struct _agp_info {
__u32 bridge_id; /* bridge vendor/device */
__u32 agp_mode; /* mode info of bridge */
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) */
size_t pg_used; /* current pages used */
__kernel_size_t aper_size; /* size of aperture */
__kernel_size_t pg_total; /* max pages (swap + system) */
__kernel_size_t pg_system; /* max pages (system) */
__kernel_size_t pg_used; /* current pages used */
} agp_info;

typedef struct _agp_setup {
Expand Down

0 comments on commit 783eb35

Please sign in to comment.