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
8a1c2f7e
Commit
8a1c2f7e
authored
Jan 08, 2003
by
Andy Grover
Browse files
Options
Browse Files
Download
Plain Diff
Merge groveronline.com:/root/bk/linux-2.5
into groveronline.com:/root/bk/linux-acpi
parents
88557c46
27d23d3f
Changes
26
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
139 additions
and
119 deletions
+139
-119
CREDITS
CREDITS
+0
-5
Makefile
Makefile
+1
-1
arch/i386/Kconfig
arch/i386/Kconfig
+2
-7
arch/i386/kernel/edd.c
arch/i386/kernel/edd.c
+2
-2
arch/i386/kernel/pci-dma.c
arch/i386/kernel/pci-dma.c
+1
-1
arch/i386/kernel/traps.c
arch/i386/kernel/traps.c
+5
-2
arch/x86_64/mm/init.c
arch/x86_64/mm/init.c
+1
-1
drivers/atm/atmtcp.c
drivers/atm/atmtcp.c
+1
-1
drivers/cdrom/cdrom.c
drivers/cdrom/cdrom.c
+5
-1
drivers/char/ip2.c
drivers/char/ip2.c
+2
-1
drivers/hotplug/pci_hotplug_core.c
drivers/hotplug/pci_hotplug_core.c
+1
-1
drivers/isdn/hisax/config.c
drivers/isdn/hisax/config.c
+10
-5
drivers/macintosh/apm_emu.c
drivers/macintosh/apm_emu.c
+1
-1
drivers/media/video/Makefile
drivers/media/video/Makefile
+1
-1
drivers/media/video/zr36067.c
drivers/media/video/zr36067.c
+2
-4
drivers/net/appletalk/Kconfig
drivers/net/appletalk/Kconfig
+2
-2
drivers/net/atari_bionet.c
drivers/net/atari_bionet.c
+0
-2
drivers/pcmcia/yenta.c
drivers/pcmcia/yenta.c
+1
-1
drivers/scsi/gdth.c
drivers/scsi/gdth.c
+66
-30
drivers/scsi/gdth.h
drivers/scsi/gdth.h
+7
-6
fs/proc/array.c
fs/proc/array.c
+2
-1
include/asm-i386/edd.h
include/asm-i386/edd.h
+1
-1
include/asm-x86_64/spinlock.h
include/asm-x86_64/spinlock.h
+1
-1
include/asm-x86_64/xor.h
include/asm-x86_64/xor.h
+1
-1
include/linux/signal.h
include/linux/signal.h
+22
-37
mm/memory.c
mm/memory.c
+1
-3
No files found.
CREDITS
View file @
8a1c2f7e
...
...
@@ -2440,7 +2440,6 @@ D: implemented kmod
D: modularized BSD Unix domain sockets
N: Martin Kasper Petersen
E: mkp@linuxcare.com
E: mkp@mkp.net
D: PA-RISC port
D: XFS file system
...
...
@@ -3466,14 +3465,10 @@ S: D-73732 Esslingen
S: Germany
N: Leonard N. Zubkoff
E: lnz@dandelion.com
W: http://www.dandelion.com/Linux/
D: BusLogic SCSI driver
D: Mylex DAC960 PCI RAID driver
D: Miscellaneous kernel fixes
S: 3078 Sulphur Spring Court
S: San Jose, California 95148
S: USA
N: Alessandro Zummo
E: azummo@ita.flashnet.it
...
...
Makefile
View file @
8a1c2f7e
VERSION
=
2
PATCHLEVEL
=
5
SUBLEVEL
=
5
4
SUBLEVEL
=
5
5
EXTRAVERSION
=
# *DOCUMENTATION*
...
...
arch/i386/Kconfig
View file @
8a1c2f7e
...
...
@@ -303,11 +303,6 @@ config X86_POPAD_OK
depends on !M386
default y
config X86_USE_STRING_486
bool
depends on MELAN || M586MMX || M586TSC || M586 || M486
default y
config X86_ALIGNMENT_16
bool
depends on MWINCHIP3D || MWINCHIP2 || MWINCHIPC6 || MCYRIXIII || MELAN || MK6 || M586MMX || M586TSC || M586 || M486
...
...
@@ -345,11 +340,11 @@ config X86_OOSTORE
config X86_PREFETCH
bool
depends on MPENTIUMIII || MP4
depends on MPENTIUMIII || MP
ENTIUM
4
default y
config X86_SSE2
bool
bool
depends on MK8 || MPENTIUM4
default y
...
...
arch/i386/kernel/edd.c
View file @
8a1c2f7e
...
...
@@ -419,8 +419,8 @@ edd_show_info_flags(struct edd_device *edev, char *buf, size_t count,
return
0
;
}
if
(
info
->
params
.
info_flags
&
EDD_INFO_DMA_BOUNDRY_ERROR_TRANSPARENT
)
p
+=
snprintf
(
p
,
left
,
"DMA boundry error transparent
\n
"
);
if
(
info
->
params
.
info_flags
&
EDD_INFO_DMA_BOUND
A
RY_ERROR_TRANSPARENT
)
p
+=
snprintf
(
p
,
left
,
"DMA bound
a
ry error transparent
\n
"
);
if
(
info
->
params
.
info_flags
&
EDD_INFO_GEOMETRY_VALID
)
p
+=
snprintf
(
p
,
left
,
"geometry valid
\n
"
);
if
(
info
->
params
.
info_flags
&
EDD_INFO_REMOVABLE
)
...
...
arch/i386/kernel/pci-dma.c
View file @
8a1c2f7e
...
...
@@ -19,7 +19,7 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
void
*
ret
;
int
gfp
=
GFP_ATOMIC
;
if
(
dev
==
NULL
||
(
(
u32
)
*
dev
->
dma_mask
!=
0xffffffff
))
if
(
dev
==
NULL
||
(
*
dev
->
dma_mask
<
0xffffffff
))
gfp
|=
GFP_DMA
;
ret
=
(
void
*
)
__get_free_pages
(
gfp
,
get_order
(
size
));
...
...
arch/i386/kernel/traps.c
View file @
8a1c2f7e
...
...
@@ -276,8 +276,11 @@ static inline unsigned long get_cr2(void)
static
inline
void
do_trap
(
int
trapnr
,
int
signr
,
char
*
str
,
int
vm86
,
struct
pt_regs
*
regs
,
long
error_code
,
siginfo_t
*
info
)
{
if
(
vm86
&&
regs
->
eflags
&
VM_MASK
)
goto
vm86_trap
;
if
(
regs
->
eflags
&
VM_MASK
)
{
if
(
vm86
)
goto
vm86_trap
;
goto
trap_signal
;
}
if
(
!
(
regs
->
xcs
&
3
))
goto
kernel_trap
;
...
...
arch/x86_64/mm/init.c
View file @
8a1c2f7e
...
...
@@ -161,7 +161,7 @@ static struct temp_map {
}
temp_mappings
[]
__initdata
=
{
{
&
temp_boot_pmds
[
0
],
(
void
*
)(
40UL
*
1024
*
1024
)
},
{
&
temp_boot_pmds
[
1
],
(
void
*
)(
42UL
*
1024
*
1024
)
},
{
&
temp_boot_pmds
[
1
],
(
void
*
)(
44UL
*
1024
*
1024
)
},
{
&
temp_boot_pmds
[
2
],
(
void
*
)(
44UL
*
1024
*
1024
)
},
{}
};
...
...
drivers/atm/atmtcp.c
View file @
8a1c2f7e
...
...
@@ -173,7 +173,7 @@ static int atmtcp_v_ioctl(struct atm_dev *dev,unsigned int cmd,void *arg)
static
int
atmtcp_v_send
(
struct
atm_vcc
*
vcc
,
struct
sk_buff
*
skb
)
{
struct
atmtcp_dev_data
*
dev_data
;
struct
atm_vcc
*
out_vcc
;
struct
atm_vcc
*
out_vcc
=
NULL
;
/* Initializer quietens GCC warning */
struct
sk_buff
*
new_skb
;
struct
atmtcp_hdr
*
hdr
;
int
size
;
...
...
drivers/cdrom/cdrom.c
View file @
8a1c2f7e
...
...
@@ -727,6 +727,7 @@ static int cdrom_load_unload(struct cdrom_device_info *cdi, int slot)
cgc
.
cmd
[
0
]
=
GPCMD_LOAD_UNLOAD
;
cgc
.
cmd
[
4
]
=
2
+
(
slot
>=
0
);
cgc
.
cmd
[
8
]
=
slot
;
cgc
.
timeout
=
60
*
HZ
;
/* The Sanyo 3 CD changer uses byte 7 of the
GPCMD_TEST_UNIT_READY to command to switch CDs instead of
...
...
@@ -1901,6 +1902,7 @@ static int mmc_ioctl(struct cdrom_device_info *cdi, unsigned int cmd,
{
struct
cdrom_device_ops
*
cdo
=
cdi
->
ops
;
struct
cdrom_generic_command
cgc
;
struct
request_sense
sense
;
char
buffer
[
32
];
int
ret
=
0
;
...
...
@@ -1935,9 +1937,11 @@ static int mmc_ioctl(struct cdrom_device_info *cdi, unsigned int cmd,
cgc
.
buffer
=
(
char
*
)
kmalloc
(
blocksize
,
GFP_KERNEL
);
if
(
cgc
.
buffer
==
NULL
)
return
-
ENOMEM
;
memset
(
&
sense
,
0
,
sizeof
(
sense
));
cgc
.
sense
=
&
sense
;
cgc
.
data_direction
=
CGC_DATA_READ
;
ret
=
cdrom_read_block
(
cdi
,
&
cgc
,
lba
,
1
,
format
,
blocksize
);
if
(
ret
)
{
if
(
ret
&&
sense
.
sense_key
==
0x05
&&
sense
.
asc
==
0x20
&&
sense
.
ascq
==
0x00
)
{
/*
* SCSI-II devices are not required to support
* READ_CD, so let's try switching block size
...
...
drivers/char/ip2.c
View file @
8a1c2f7e
...
...
@@ -33,10 +33,11 @@ ip2_loadmain(int *, int *, unsigned char *, int ); // ref into ip2main.c
*/
static
int
io
[
IP2_MAX_BOARDS
]
=
{
0
,
0
,
0
,
0
};
static
int
irq
[
IP2_MAX_BOARDS
]
=
{
-
1
,
-
1
,
-
1
,
-
1
};
static
int
poll_only
=
0
;
#ifdef MODULE
static
int
poll_only
=
0
;
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0)
MODULE_AUTHOR
(
"Doug McNash"
);
MODULE_DESCRIPTION
(
"Computone IntelliPort Plus Driver"
);
...
...
drivers/hotplug/pci_hotplug_core.c
View file @
8a1c2f7e
...
...
@@ -596,7 +596,7 @@ static ssize_t power_read_file (struct file *file, char *buf, size_t count, loff
if
(
*
offset
<
0
)
return
-
EINVAL
;
if
(
count
<=
0
)
if
(
count
==
0
||
count
>
16384
)
return
0
;
if
(
*
offset
!=
0
)
return
0
;
...
...
drivers/isdn/hisax/config.c
View file @
8a1c2f7e
...
...
@@ -1511,7 +1511,8 @@ static int __init HiSax_init(void)
nrcards
,
(
nrcards
>
1
)
?
"s"
:
""
);
/* Install only, if at least one card found */
HiSax_inithardware
(
NULL
);
if
(
!
HiSax_inithardware
(
NULL
))
return
-
ENODEV
;
return
0
;
out_tei:
...
...
@@ -1575,7 +1576,8 @@ int elsa_init_pcmcia(void *pcm_iob, int pcm_irq, int *busy_flag, int prot)
printk
(
KERN_DEBUG
"HiSax: Total %d card%s defined
\n
"
,
nrcards
,
(
nrcards
>
1
)
?
"s"
:
""
);
HiSax_inithardware
(
busy_flag
);
if
(
!
HiSax_inithardware
(
busy_flag
))
return
-
ENODEV
;
printk
(
KERN_NOTICE
"HiSax: module installed
\n
"
);
#endif
return
0
;
...
...
@@ -1617,7 +1619,8 @@ int hfc_init_pcmcia(void *pcm_iob, int pcm_irq, int *busy_flag, int prot)
printk
(
KERN_DEBUG
"HiSax: Total %d card%s defined
\n
"
,
nrcards
,
(
nrcards
>
1
)
?
"s"
:
""
);
HiSax_inithardware
(
busy_flag
);
if
(
!
HiSax_inithardware
(
busy_flag
))
return
-
ENODEV
;
printk
(
KERN_NOTICE
"HiSax: module installed
\n
"
);
#endif
return
0
;
...
...
@@ -1659,7 +1662,8 @@ int sedl_init_pcmcia(void *pcm_iob, int pcm_irq, int *busy_flag, int prot)
printk
(
KERN_DEBUG
"HiSax: Total %d card%s defined
\n
"
,
nrcards
,
(
nrcards
>
1
)
?
"s"
:
""
);
HiSax_inithardware
(
busy_flag
);
if
(
!
HiSax_inithardware
(
busy_flag
))
return
-
ENODEV
;
printk
(
KERN_NOTICE
"HiSax: module installed
\n
"
);
#endif
return
0
;
...
...
@@ -1701,7 +1705,8 @@ int avm_a1_init_pcmcia(void *pcm_iob, int pcm_irq, int *busy_flag, int prot)
printk
(
KERN_DEBUG
"HiSax: Total %d card%s defined
\n
"
,
nrcards
,
(
nrcards
>
1
)
?
"s"
:
""
);
HiSax_inithardware
(
busy_flag
);
if
(
!
HiSax_inithardware
(
busy_flag
))
return
-
ENODEV
;
printk
(
KERN_NOTICE
"HiSax: module installed
\n
"
);
#endif
return
0
;
...
...
drivers/macintosh/apm_emu.c
View file @
8a1c2f7e
...
...
@@ -183,7 +183,7 @@ static int check_apm_user(struct apm_user *as, const char *func)
static
ssize_t
do_read
(
struct
file
*
fp
,
char
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
struct
apm_user
*
as
;
in
t
i
;
size_
t
i
;
apm_event_t
event
;
DECLARE_WAITQUEUE
(
wait
,
current
);
...
...
drivers/media/video/Makefile
View file @
8a1c2f7e
#
# Makefile for the
kernel character
device drivers.
# Makefile for the
video capture/playback
device drivers.
#
# All of the (potential) objects that export symbols.
...
...
drivers/media/video/zr36067.c
View file @
8a1c2f7e
...
...
@@ -4158,7 +4158,6 @@ static int do_zoran_ioctl(struct zoran *zr, unsigned int cmd,
{
struct
zoran_status
bs
;
int
norm
,
input
,
status
;
unsigned
long
timeout
;
if
(
zr
->
codec_mode
!=
BUZ_MODE_IDLE
)
{
DEBUG1
(
printk
(
KERN_ERR
...
...
@@ -4204,9 +4203,8 @@ static int do_zoran_ioctl(struct zoran *zr, unsigned int cmd,
/* sleep 1 second */
timeout
=
jiffies
+
1
*
HZ
;
while
(
jiffies
<
timeout
)
schedule
();
set_current_state
(
TASK_UNINTERRUPTIBLE
);
schedule_timeout
(
HZ
);
/* Get status of video decoder */
...
...
drivers/net/appletalk/Kconfig
View file @
8a1c2f7e
...
...
@@ -13,7 +13,7 @@ config DEV_APPLETALK
config LTPC
tristate "Apple/Farallon LocalTalk PC support"
depends on DEV_APPLETALK
depends on DEV_APPLETALK
&& (ISA || EISA)
help
This allows you to use the AppleTalk PC card to connect to LocalTalk
networks. The card is also known as the Farallon PhoneNet PC card.
...
...
@@ -24,7 +24,7 @@ config LTPC
config COPS
tristate "COPS LocalTalk PC support"
depends on DEV_APPLETALK
depends on DEV_APPLETALK
&& (ISA || EISA)
help
This allows you to use COPS AppleTalk cards to connect to LocalTalk
networks. You also need version 1.3.3 or later of the netatalk
...
...
drivers/net/atari_bionet.c
View file @
8a1c2f7e
...
...
@@ -114,8 +114,6 @@ static char version[] =
#include <asm/atari_stdma.h>
extern
struct
net_device
*
init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_private
);
/* use 0 for production, 1 for verification, >2 for debug
*/
#ifndef NET_DEBUG
...
...
drivers/pcmcia/yenta.c
View file @
8a1c2f7e
...
...
@@ -695,7 +695,7 @@ static int yenta_suspend(pci_socket_t *socket)
/*
* This does not work currently. The controller
* loses too much informationduring D3 to come up
* loses too much information
during D3 to come up
* cleanly. We should probably fix yenta_init()
* to update all the critical registers, notably
* the IO and MEM bridging region data.. That is
...
...
drivers/scsi/gdth.c
View file @
8a1c2f7e
This diff is collapsed.
Click to expand it.
drivers/scsi/gdth.h
View file @
8a1c2f7e
...
...
@@ -2,15 +2,15 @@
#define _GDTH_H
/*
* Header file for the GDT
ISA/EISA/PCI Disk Array Controller
driver for Linux
* Header file for the GDT
Disk Array/Storage RAID controllers
driver for Linux
*
* gdth.h Copyright (C) 1995-0
1 ICP vortex Computersysteme GmbH
, Achim Leubner
* gdth.h Copyright (C) 1995-0
2 ICP vortex, an Intel company
, Achim Leubner
* See gdth.c for further informations and
* below for supported controller types
*
* <achim
@vortex.de
>
* <achim
.leubner@intel.com
>
*
* $Id: gdth.h,v 1.4
4 2001/08/21 11:19:05
achim Exp $
* $Id: gdth.h,v 1.4
6 2002/02/05 09:39:53
achim Exp $
*/
#include <linux/version.h>
...
...
@@ -29,9 +29,9 @@
/* defines, macros */
/* driver version */
#define GDTH_VERSION_STR "2.0
3
"
#define GDTH_VERSION_STR "2.0
5
"
#define GDTH_VERSION 2
#define GDTH_SUBVERSION
3
#define GDTH_SUBVERSION
5
/* protocol version */
#define PROTOCOL_VERSION 1
...
...
@@ -265,6 +265,7 @@
#define S_CACHE_UNKNOWN 12
/* cache serv.: drive unknown */
#define S_RAW_SCSI 12
/* raw serv.: target error */
#define S_RAW_ILL 0xff
/* raw serv.: illegal */
#define S_CACHE_RESERV -24
/* cache: reserv. conflict */
/* timeout values */
#define INIT_RETRIES 100000
/* 100000 * 1ms = 100s */
...
...
fs/proc/array.c
View file @
8a1c2f7e
...
...
@@ -161,7 +161,8 @@ static inline char * task_state(struct task_struct *p, char *buffer)
"Uid:
\t
%d
\t
%d
\t
%d
\t
%d
\n
"
"Gid:
\t
%d
\t
%d
\t
%d
\t
%d
\n
"
,
get_task_state
(
p
),
p
->
tgid
,
p
->
pid
,
p
->
pid
?
p
->
real_parent
->
pid
:
0
,
0
,
p
->
pid
,
p
->
pid
?
p
->
real_parent
->
pid
:
0
,
p
->
pid
&&
p
->
ptrace
?
p
->
parent
->
pid
:
0
,
p
->
uid
,
p
->
euid
,
p
->
suid
,
p
->
fsuid
,
p
->
gid
,
p
->
egid
,
p
->
sgid
,
p
->
fsgid
);
read_unlock
(
&
tasklist_lock
);
...
...
include/asm-i386/edd.h
View file @
8a1c2f7e
...
...
@@ -48,7 +48,7 @@
#define EDD_EXT_ENHANCED_DISK_DRIVE_SUPPORT (1 << 2)
#define EDD_EXT_64BIT_EXTENSIONS (1 << 3)
#define EDD_INFO_DMA_BOUNDRY_ERROR_TRANSPARENT (1 << 0)
#define EDD_INFO_DMA_BOUND
A
RY_ERROR_TRANSPARENT (1 << 0)
#define EDD_INFO_GEOMETRY_VALID (1 << 1)
#define EDD_INFO_REMOVABLE (1 << 2)
#define EDD_INFO_WRITE_VERIFY (1 << 3)
...
...
include/asm-x86_64/spinlock.h
View file @
8a1c2f7e
...
...
@@ -15,7 +15,7 @@ extern int printk(const char * fmt, ...)
typedef
struct
{
volatile
unsigned
int
lock
;
#if
SPINLOCK_DEBUG
#if
CONFIG_DEBUG_SPINLOCK
unsigned
magic
;
#endif
}
spinlock_t
;
...
...
include/asm-x86_64/xor.h
View file @
8a1c2f7e
...
...
@@ -51,7 +51,7 @@ typedef struct { unsigned long a,b; } __attribute__((aligned(16))) xmm_store_t;
: "memory"); \
} while(0)
#define XMMS_RESTORE
\
#define XMMS_RESTORE
do {
\
asm volatile ( \
"sfence ;\n\t" \
"movups (%1),%%xmm0 ;\n\t" \
...
...
include/linux/signal.h
View file @
8a1c2f7e
...
...
@@ -70,37 +70,24 @@ static inline int sigfindinword(unsigned long word)
#define _SIG_SET_BINOP(name, op) \
static inline void name(sigset_t *r, const sigset_t *a, const sigset_t *b) \
{ \
extern void _NSIG_WORDS_is_unsupported_size(void); \
unsigned long a0, a1, a2, a3, b0, b1, b2, b3; \
unsigned long i; \
\
for (i = 0; i < _NSIG_WORDS/4; ++i) { \
a0 = a->sig[4*i+0]; a1 = a->sig[4*i+1]; \
a2 = a->sig[4*i+2]; a3 = a->sig[4*i+3]; \
b0 = b->sig[4*i+0]; b1 = b->sig[4*i+1]; \
b2 = b->sig[4*i+2]; b3 = b->sig[4*i+3]; \
r->sig[4*i+0] = op(a0, b0); \
r->sig[4*i+1] = op(a1, b1); \
r->sig[4*i+2] = op(a2, b2); \
r->sig[4*i+3] = op(a3, b3); \
} \
switch (_NSIG_WORDS % 4) { \
case 3: \
a0 = a->sig[4*i+0]; a1 = a->sig[4*i+1]; a2 = a->sig[4*i+2]; \
b0 = b->sig[4*i+0]; b1 = b->sig[4*i+1]; b2 = b->sig[4*i+2]; \
r->sig[4*i+0] = op(a0, b0); \
r->sig[4*i+1] = op(a1, b1); \
r->sig[4*i+2] = op(a2, b2); \
break; \
switch (_NSIG_WORDS) { \
case 4: \
a3 = a->sig[3]; a2 = a->sig[2]; \
b3 = b->sig[3]; b2 = b->sig[2]; \
r->sig[3] = op(a3, b3); \
r->sig[2] = op(a2, b2); \
case 2: \
a0 = a->sig[4*i+0]; a1 = a->sig[4*i+1]; \
b0 = b->sig[4*i+0]; b1 = b->sig[4*i+1]; \
r->sig[4*i+0] = op(a0, b0); \
r->sig[4*i+1] = op(a1, b1); \
break; \
a1 = a->sig[1]; b1 = b->sig[1]; \
r->sig[1] = op(a1, b1); \
case 1: \
a0 = a->sig[
4*i+0]; b0 = b->sig[4*i+0];
\
r->sig[
4*i+0] = op(a0, b0);
\
a0 = a->sig[
0]; b0 = b->sig[0];
\
r->sig[
0] = op(a0, b0);
\
break; \
default: \
_NSIG_WORDS_is_unsupported_size(); \
} \
}
...
...
@@ -121,18 +108,16 @@ _SIG_SET_BINOP(signandsets, _sig_nand)
#define _SIG_SET_OP(name, op) \
static inline void name(sigset_t *set) \
{ \
unsigned long i;
\
extern void _NSIG_WORDS_is_unsupported_size(void);
\
\
for (i = 0; i < _NSIG_WORDS/4; ++i) { \
set->sig[4*i+0] = op(set->sig[4*i+0]); \
set->sig[4*i+1] = op(set->sig[4*i+1]); \
set->sig[4*i+2] = op(set->sig[4*i+2]); \
set->sig[4*i+3] = op(set->sig[4*i+3]); \
} \
switch (_NSIG_WORDS % 4) { \
case 3: set->sig[4*i+2] = op(set->sig[4*i+2]); \
case 2: set->sig[4*i+1] = op(set->sig[4*i+1]); \
case 1: set->sig[4*i+0] = op(set->sig[4*i+0]); \
switch (_NSIG_WORDS) { \
case 4: set->sig[3] = op(set->sig[3]); \
set->sig[2] = op(set->sig[2]); \
case 2: set->sig[1] = op(set->sig[1]); \
case 1: set->sig[0] = op(set->sig[0]); \
break; \
default: \
_NSIG_WORDS_is_unsupported_size(); \
} \
}
...
...
mm/memory.c
View file @
8a1c2f7e
...
...
@@ -113,10 +113,8 @@ static inline void free_one_pgd(mmu_gather_t *tlb, pgd_t * dir)
}
pmd
=
pmd_offset
(
dir
,
0
);
pgd_clear
(
dir
);
for
(
j
=
0
;
j
<
PTRS_PER_PMD
;
j
++
)
{
prefetchw
(
pmd
+
j
+
(
PREFETCH_STRIDE
/
16
));
for
(
j
=
0
;
j
<
PTRS_PER_PMD
;
j
++
)
free_one_pmd
(
tlb
,
pmd
+
j
);
}
pmd_free_tlb
(
tlb
,
pmd
);
}
...
...
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