Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189796
b: refs/heads/master
c: 4505a49
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Apr 13, 2010
1 parent 8c1f7ad commit c826022
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f6be75d03c8870be91e6e2a195648ece04b6bb16
refs/heads/master: 4505a4938917f4872efcc90bc1e5f4f0ce903b47
2 changes: 1 addition & 1 deletion trunk/fs/nilfs2/alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ void nilfs_palloc_abort_alloc_entry(struct inode *inode,
bitmap = bitmap_kaddr + bh_offset(req->pr_bitmap_bh);
if (!nilfs_clear_bit_atomic(nilfs_mdt_bgl_lock(inode, group),
group_offset, bitmap))
printk(KERN_WARNING "%s: entry numer %llu already freed\n",
printk(KERN_WARNING "%s: entry number %llu already freed\n",
__func__, (unsigned long long)req->pr_entry_nr);

nilfs_palloc_group_desc_add_entries(inode, group, desc, 1);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/nilfs2/btree.c
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@ static int nilfs_btree_propagate_v(struct nilfs_btree *btree,
struct nilfs_btree_path *path,
int level, struct buffer_head *bh)
{
int maxlevel, ret;
int maxlevel = 0, ret;
struct nilfs_btree_node *parent;
struct inode *dat = nilfs_bmap_get_dat(&btree->bt_bmap);
__u64 ptr;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/nilfs2/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
struct inode *inode = filp->f_dentry->d_inode;
void __user *argp = (void * __user *)arg;
void __user *argp = (void __user *)arg;

switch (cmd) {
case NILFS_IOCTL_CHANGE_CPMODE:
Expand Down
5 changes: 4 additions & 1 deletion trunk/net/sunrpc/xprtrdma/svc_rdma_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,10 @@ static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
int ret;

dprintk("svcrdma: Creating RDMA socket\n");

if (sa->sa_family != AF_INET) {
dprintk("svcrdma: Address family %d is not supported.\n", sa->sa_family);
return ERR_PTR(-EAFNOSUPPORT);
}
cma_xprt = rdma_create_xprt(serv, 1);
if (!cma_xprt)
return ERR_PTR(-ENOMEM);
Expand Down

0 comments on commit c826022

Please sign in to comment.