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
342ba15e
Commit
342ba15e
authored
Feb 14, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-rmk
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
df9a20b3
67948c82
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
4 deletions
+11
-4
drivers/acpi/Kconfig
drivers/acpi/Kconfig
+1
-0
drivers/char/ipmi/ipmi_msghandler.c
drivers/char/ipmi/ipmi_msghandler.c
+3
-0
drivers/isdn/i4l/isdn_net.h
drivers/isdn/i4l/isdn_net.h
+4
-3
include/asm-ppc64/io.h
include/asm-ppc64/io.h
+1
-1
mm/filemap.c
mm/filemap.c
+2
-0
No files found.
drivers/acpi/Kconfig
View file @
342ba15e
...
...
@@ -259,6 +259,7 @@ config ACPI_CUSTOM_DSDT_FILE
config ACPI_BLACKLIST_YEAR
int "Disable ACPI for systems before Jan 1st this year"
depends on ACPI_INTERPRETER
default 0
help
enter a 4-digit year, eg. 2001 to disable ACPI by default
...
...
drivers/char/ipmi/ipmi_msghandler.c
View file @
342ba15e
...
...
@@ -443,6 +443,9 @@ unsigned int ipmi_addr_length(int addr_type)
return
sizeof
(
struct
ipmi_ipmb_addr
);
}
if
(
addr_type
==
IPMI_LAN_ADDR_TYPE
)
return
sizeof
(
struct
ipmi_lan_addr
);
return
0
;
}
...
...
drivers/isdn/i4l/isdn_net.h
View file @
342ba15e
...
...
@@ -78,18 +78,19 @@ static __inline__ isdn_net_local * isdn_net_get_locked_lp(isdn_net_dev *nd)
spin_lock_irqsave
(
&
nd
->
queue_lock
,
flags
);
lp
=
nd
->
queue
;
/* get lp on top of queue */
spin_lock
_bh
(
&
nd
->
queue
->
xmit_lock
);
spin_lock
(
&
nd
->
queue
->
xmit_lock
);
while
(
isdn_net_lp_busy
(
nd
->
queue
))
{
spin_unlock
_bh
(
&
nd
->
queue
->
xmit_lock
);
spin_unlock
(
&
nd
->
queue
->
xmit_lock
);
nd
->
queue
=
nd
->
queue
->
next
;
if
(
nd
->
queue
==
lp
)
{
/* not found -- should never happen */
lp
=
NULL
;
goto
errout
;
}
spin_lock
_bh
(
&
nd
->
queue
->
xmit_lock
);
spin_lock
(
&
nd
->
queue
->
xmit_lock
);
}
lp
=
nd
->
queue
;
nd
->
queue
=
nd
->
queue
->
next
;
local_bh_disable
();
errout:
spin_unlock_irqrestore
(
&
nd
->
queue_lock
,
flags
);
return
lp
;
...
...
include/asm-ppc64/io.h
View file @
342ba15e
#ifndef _PPC64_IO_H
#ifndef _PPC64_IO_H
#define _PPC64_IO_H
/*
...
...
mm/filemap.c
View file @
342ba15e
...
...
@@ -2078,6 +2078,8 @@ __generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
count
=
ocount
;
pos
=
*
ppos
;
vfs_check_frozen
(
inode
->
i_sb
,
SB_FREEZE_WRITE
);
/* We can write back this queue in page reclaim */
current
->
backing_dev_info
=
mapping
->
backing_dev_info
;
written
=
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