Skip to content

Commit

Permalink
Merge branch 'linux-next' of git://git.open-osd.org/linux-open-osd
Browse files Browse the repository at this point in the history
Pull exofs update from Boaz Harrosh:
 "Just three one liners"

* 'linux-next' of git://git.open-osd.org/linux-open-osd:
  pnfs_osd_xdr: Remove unused #include from pnfs_osd_xdr.h
  ore: signedness bug in _sp2d_min_pg()
  exofs: check for allocation failure in uri_store()
  • Loading branch information
Linus Torvalds committed Oct 9, 2012
2 parents 1219771 + 7f8d145 commit 8711798
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fs/exofs/ore_raid.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ static unsigned _sp2d_min_pg(struct __stripe_pages_2d *sp2d)

static unsigned _sp2d_max_pg(struct __stripe_pages_2d *sp2d)
{
unsigned p;
int p;

for (p = sp2d->pages_in_unit - 1; p >= 0; --p) {
struct __1_page_stripe *_1ps = &sp2d->_1p_stripes[p];
Expand Down
7 changes: 6 additions & 1 deletion fs/exofs/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,13 @@ static ssize_t uri_show(struct exofs_dev *edp, char *buf)

static ssize_t uri_store(struct exofs_dev *edp, const char *buf, size_t len)
{
uint8_t *new_uri;

edp->urilen = strlen(buf) + 1;
edp->uri = krealloc(edp->uri, edp->urilen, GFP_KERNEL);
new_uri = krealloc(edp->uri, edp->urilen, GFP_KERNEL);
if (new_uri == NULL)
return -ENOMEM;
edp->uri = new_uri;
strncpy(edp->uri, buf, edp->urilen);
return edp->urilen;
}
Expand Down
1 change: 0 additions & 1 deletion include/linux/pnfs_osd_xdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#define __PNFS_OSD_XDR_H__

#include <linux/nfs_fs.h>
#include <linux/nfs_page.h>

/*
* draft-ietf-nfsv4-minorversion-22
Expand Down

0 comments on commit 8711798

Please sign in to comment.