Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull 9p regression fix from Al Viro:
"Fix for breakage introduced when switching p9_client_{read,write}() to
struct iov_iter * (went into 4.1)"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
9p: ensure err is initialized to 0 in p9_client_read/write

+2
+2
net/9p/client.c
··· 1541 1541 struct p9_client *clnt = fid->clnt; 1542 1542 struct p9_req_t *req; 1543 1543 int total = 0; 1544 + *err = 0; 1544 1545 1545 1546 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n", 1546 1547 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to)); ··· 1621 1620 struct p9_client *clnt = fid->clnt; 1622 1621 struct p9_req_t *req; 1623 1622 int total = 0; 1623 + *err = 0; 1624 1624 1625 1625 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n", 1626 1626 fid->fid, (unsigned long long) offset,