<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/usb/gadget, branch v4.9</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>usb: gadget: f_fs: fix wrong parenthesis in ffs_func_req_match()</title>
<updated>2016-11-18T11:50:37+00:00</updated>
<author>
<name>Felix Hädicke</name>
<email>felixhaedicke@web.de</email>
</author>
<published>2016-11-03T23:23:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=05e78c6933d613a7da0d0473f4c19c865af04c2c'/>
<id>05e78c6933d613a7da0d0473f4c19c865af04c2c</id>
<content type='text'>
Properly check the return code of ffs_func_revmap_intf() and
ffs_func_revmap_ep() for a non-negative value.

Instead of checking the return code, the comparison was performed for the last
parameter of the function calls, because of wrong parenthesis.

This also fixes the following static checker warning:
drivers/usb/gadget/function/f_fs.c:3152 ffs_func_req_match()
warn: always true condition '(((creq-&gt;wIndex)) &gt;= 0) =&gt; (0-u16max &gt;= 0)'

Reported-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Felix Hädicke &lt;felixhaedicke@web.de&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Properly check the return code of ffs_func_revmap_intf() and
ffs_func_revmap_ep() for a non-negative value.

Instead of checking the return code, the comparison was performed for the last
parameter of the function calls, because of wrong parenthesis.

This also fixes the following static checker warning:
drivers/usb/gadget/function/f_fs.c:3152 ffs_func_req_match()
warn: always true condition '(((creq-&gt;wIndex)) &gt;= 0) =&gt; (0-u16max &gt;= 0)'

Reported-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Felix Hädicke &lt;felixhaedicke@web.de&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: gadget: u_ether: remove interrupt throttling</title>
<updated>2016-11-01T13:48:25+00:00</updated>
<author>
<name>Felipe Balbi</name>
<email>felipe.balbi@linux.intel.com</email>
</author>
<published>2016-11-01T11:20:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=fd9afd3cbe404998d732be6cc798f749597c5114'/>
<id>fd9afd3cbe404998d732be6cc798f749597c5114</id>
<content type='text'>
According to Dave Miller "the networking stack has a
hard requirement that all SKBs which are transmitted
must have their completion signalled in a fininte
amount of time. This is because, until the SKB is
freed by the driver, it holds onto socket,
netfilter, and other subsystem resources."

In summary, this means that using TX IRQ throttling
for the networking gadgets is, at least, complex and
we should avoid it for the time being.

Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Tested-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Suggested-by: David Miller &lt;davem@davemloft.net&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to Dave Miller "the networking stack has a
hard requirement that all SKBs which are transmitted
must have their completion signalled in a fininte
amount of time. This is because, until the SKB is
freed by the driver, it holds onto socket,
netfilter, and other subsystem resources."

In summary, this means that using TX IRQ throttling
for the networking gadgets is, at least, complex and
we should avoid it for the time being.

Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Tested-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Suggested-by: David Miller &lt;davem@davemloft.net&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: gadget: f_fs: stop sleeping in ffs_func_eps_disable</title>
<updated>2016-10-17T09:34:25+00:00</updated>
<author>
<name>Michal Nazarewicz</name>
<email>mina86@mina86.com</email>
</author>
<published>2016-10-04T00:07:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=a9e6f83c2df199187a5248f824f31b6787ae23ae'/>
<id>a9e6f83c2df199187a5248f824f31b6787ae23ae</id>
<content type='text'>
ffs_func_eps_disable is called from atomic context so it cannot sleep
thus cannot grab a mutex.  Change the handling of epfile-&gt;read_buffer
to use non-sleeping synchronisation method.

Reported-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Michał Nazarewicz &lt;mina86@mina86.com&gt;
Fixes: 9353afbbfa7b ("buffer data from ‘oversized’ OUT requests")
Tested-by: John Stultz &lt;john.stultz@linaro.org&gt;
Tested-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ffs_func_eps_disable is called from atomic context so it cannot sleep
thus cannot grab a mutex.  Change the handling of epfile-&gt;read_buffer
to use non-sleeping synchronisation method.

Reported-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Michał Nazarewicz &lt;mina86@mina86.com&gt;
Fixes: 9353afbbfa7b ("buffer data from ‘oversized’ OUT requests")
Tested-by: John Stultz &lt;john.stultz@linaro.org&gt;
Tested-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: gadget: f_fs: edit epfile-&gt;ep under lock</title>
<updated>2016-10-17T09:34:08+00:00</updated>
<author>
<name>Michal Nazarewicz</name>
<email>mina86@mina86.com</email>
</author>
<published>2016-10-04T00:07:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=454915dde06a51133750c6745f0ba57361ba209d'/>
<id>454915dde06a51133750c6745f0ba57361ba209d</id>
<content type='text'>
epfile-&gt;ep is protected by ffs-&gt;eps_lock (not epfile-&gt;mutex) so clear it
while holding the spin lock.

Tested-by: John Stultz &lt;john.stultz@linaro.org&gt;
Tested-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Michal Nazarewicz &lt;mina86@mina86.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
epfile-&gt;ep is protected by ffs-&gt;eps_lock (not epfile-&gt;mutex) so clear it
while holding the spin lock.

Tested-by: John Stultz &lt;john.stultz@linaro.org&gt;
Tested-by: Chen Yu &lt;chenyu56@huawei.com&gt;
Signed-off-by: Michal Nazarewicz &lt;mina86@mina86.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: gadget: function: u_ether: don't starve tx request queue</title>
<updated>2016-10-17T08:14:00+00:00</updated>
<author>
<name>Felipe Balbi</name>
<email>felipe.balbi@linux.intel.com</email>
</author>
<published>2016-10-04T12:14:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=6c83f77278f17a7679001027e9231291c20f0d8a'/>
<id>6c83f77278f17a7679001027e9231291c20f0d8a</id>
<content type='text'>
If we don't guarantee that we will always get an
interrupt at least when we're queueing our very last
request, we could fall into situation where we queue
every request with 'no_interrupt' set. This will
cause the link to get stuck.

The behavior above has been triggered with g_ether
and dwc3.

Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we don't guarantee that we will always get an
interrupt at least when we're queueing our very last
request, we could fall into situation where we queue
every request with 'no_interrupt' set. This will
cause the link to get stuck.

The behavior above has been triggered with g_ether
and dwc3.

Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Ville Syrjälä &lt;ville.syrjala@linux.intel.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: gadget: udc: atmel: fix endpoint name</title>
<updated>2016-10-17T08:13:21+00:00</updated>
<author>
<name>Alexandre Belloni</name>
<email>alexandre.belloni@free-electrons.com</email>
</author>
<published>2016-09-15T15:07:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=bbe097f092b0d13e9736bd2794d0ab24547d0e5d'/>
<id>bbe097f092b0d13e9736bd2794d0ab24547d0e5d</id>
<content type='text'>
Since commit c32b5bcfa3c4 ("ARM: dts: at91: Fix USB endpoint nodes"),
atmel_usba_udc fails with:

------------[ cut here ]------------
WARNING: CPU: 0 PID: 0 at include/linux/usb/gadget.h:405
ecm_do_notify+0x188/0x1a0
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Not tainted 4.7.0+ #15
Hardware name: Atmel SAMA5
[&lt;c010ccfc&gt;] (unwind_backtrace) from [&lt;c010a7ec&gt;] (show_stack+0x10/0x14)
[&lt;c010a7ec&gt;] (show_stack) from [&lt;c0115c10&gt;] (__warn+0xe4/0xfc)
[&lt;c0115c10&gt;] (__warn) from [&lt;c0115cd8&gt;] (warn_slowpath_null+0x20/0x28)
[&lt;c0115cd8&gt;] (warn_slowpath_null) from [&lt;c04377ac&gt;] (ecm_do_notify+0x188/0x1a0)
[&lt;c04377ac&gt;] (ecm_do_notify) from [&lt;c04379a4&gt;] (ecm_set_alt+0x74/0x1ac)
[&lt;c04379a4&gt;] (ecm_set_alt) from [&lt;c042f74c&gt;] (composite_setup+0xfc0/0x19f8)
[&lt;c042f74c&gt;] (composite_setup) from [&lt;c04356e8&gt;] (usba_udc_irq+0x8f4/0xd9c)
[&lt;c04356e8&gt;] (usba_udc_irq) from [&lt;c013ec9c&gt;] (handle_irq_event_percpu+0x9c/0x158)
[&lt;c013ec9c&gt;] (handle_irq_event_percpu) from [&lt;c013ed80&gt;] (handle_irq_event+0x28/0x3c)
[&lt;c013ed80&gt;] (handle_irq_event) from [&lt;c01416d4&gt;] (handle_fasteoi_irq+0xa0/0x168)
[&lt;c01416d4&gt;] (handle_fasteoi_irq) from [&lt;c013e3f8&gt;] (generic_handle_irq+0x24/0x34)
[&lt;c013e3f8&gt;] (generic_handle_irq) from [&lt;c013e640&gt;] (__handle_domain_irq+0x54/0xa8)
[&lt;c013e640&gt;] (__handle_domain_irq) from [&lt;c010b214&gt;] (__irq_svc+0x54/0x70)
[&lt;c010b214&gt;] (__irq_svc) from [&lt;c0107eb0&gt;] (arch_cpu_idle+0x38/0x3c)
[&lt;c0107eb0&gt;] (arch_cpu_idle) from [&lt;c0137300&gt;] (cpu_startup_entry+0x9c/0xdc)
[&lt;c0137300&gt;] (cpu_startup_entry) from [&lt;c0900c40&gt;] (start_kernel+0x354/0x360)
[&lt;c0900c40&gt;] (start_kernel) from [&lt;20008078&gt;] (0x20008078)
---[ end trace e7cf9dcebf4815a6 ]---

Fixes: c32b5bcfa3c4 ("ARM: dts: at91: Fix USB endpoint nodes")
Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Richard Genoud &lt;richard.genoud@gmail.com&gt;
Acked-by: Nicolas Ferre &lt;nicolas.ferre@atmel.com&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@free-electrons.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since commit c32b5bcfa3c4 ("ARM: dts: at91: Fix USB endpoint nodes"),
atmel_usba_udc fails with:

------------[ cut here ]------------
WARNING: CPU: 0 PID: 0 at include/linux/usb/gadget.h:405
ecm_do_notify+0x188/0x1a0
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Not tainted 4.7.0+ #15
Hardware name: Atmel SAMA5
[&lt;c010ccfc&gt;] (unwind_backtrace) from [&lt;c010a7ec&gt;] (show_stack+0x10/0x14)
[&lt;c010a7ec&gt;] (show_stack) from [&lt;c0115c10&gt;] (__warn+0xe4/0xfc)
[&lt;c0115c10&gt;] (__warn) from [&lt;c0115cd8&gt;] (warn_slowpath_null+0x20/0x28)
[&lt;c0115cd8&gt;] (warn_slowpath_null) from [&lt;c04377ac&gt;] (ecm_do_notify+0x188/0x1a0)
[&lt;c04377ac&gt;] (ecm_do_notify) from [&lt;c04379a4&gt;] (ecm_set_alt+0x74/0x1ac)
[&lt;c04379a4&gt;] (ecm_set_alt) from [&lt;c042f74c&gt;] (composite_setup+0xfc0/0x19f8)
[&lt;c042f74c&gt;] (composite_setup) from [&lt;c04356e8&gt;] (usba_udc_irq+0x8f4/0xd9c)
[&lt;c04356e8&gt;] (usba_udc_irq) from [&lt;c013ec9c&gt;] (handle_irq_event_percpu+0x9c/0x158)
[&lt;c013ec9c&gt;] (handle_irq_event_percpu) from [&lt;c013ed80&gt;] (handle_irq_event+0x28/0x3c)
[&lt;c013ed80&gt;] (handle_irq_event) from [&lt;c01416d4&gt;] (handle_fasteoi_irq+0xa0/0x168)
[&lt;c01416d4&gt;] (handle_fasteoi_irq) from [&lt;c013e3f8&gt;] (generic_handle_irq+0x24/0x34)
[&lt;c013e3f8&gt;] (generic_handle_irq) from [&lt;c013e640&gt;] (__handle_domain_irq+0x54/0xa8)
[&lt;c013e640&gt;] (__handle_domain_irq) from [&lt;c010b214&gt;] (__irq_svc+0x54/0x70)
[&lt;c010b214&gt;] (__irq_svc) from [&lt;c0107eb0&gt;] (arch_cpu_idle+0x38/0x3c)
[&lt;c0107eb0&gt;] (arch_cpu_idle) from [&lt;c0137300&gt;] (cpu_startup_entry+0x9c/0xdc)
[&lt;c0137300&gt;] (cpu_startup_entry) from [&lt;c0900c40&gt;] (start_kernel+0x354/0x360)
[&lt;c0900c40&gt;] (start_kernel) from [&lt;20008078&gt;] (0x20008078)
---[ end trace e7cf9dcebf4815a6 ]---

Fixes: c32b5bcfa3c4 ("ARM: dts: at91: Fix USB endpoint nodes")
Cc: &lt;stable@vger.kernel.org&gt;
Reported-by: Richard Genoud &lt;richard.genoud@gmail.com&gt;
Acked-by: Nicolas Ferre &lt;nicolas.ferre@atmel.com&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@free-electrons.com&gt;
Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: remove redundant #include &lt;linux/kconfig.h&gt;</title>
<updated>2016-10-11T22:06:33+00:00</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2016-10-11T20:55:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=97139d4a6f26445de47b378cddd5192c0278f863'/>
<id>97139d4a6f26445de47b378cddd5192c0278f863</id>
<content type='text'>
Kernel source files need not include &lt;linux/kconfig.h&gt; explicitly
because the top Makefile forces to include it with:

  -include $(srctree)/include/linux/kconfig.h

This commit removes explicit includes except the following:

  * arch/s390/include/asm/facilities_src.h
  * tools/testing/radix-tree/linux/kernel.h

These two are used for host programs.

Link: http://lkml.kernel.org/r/1473656164-11929-1-git-send-email-yamada.masahiro@socionext.com
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Kernel source files need not include &lt;linux/kconfig.h&gt; explicitly
because the top Makefile forces to include it with:

  -include $(srctree)/include/linux/kconfig.h

This commit removes explicit includes except the following:

  * arch/s390/include/asm/facilities_src.h
  * tools/testing/radix-tree/linux/kernel.h

These two are used for host programs.

Link: http://lkml.kernel.org/r/1473656164-11929-1-git-send-email-yamada.masahiro@socionext.com
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs</title>
<updated>2016-10-11T03:16:43+00:00</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2016-10-11T03:16:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=101105b1717f536ca741f940033996302d4ef191'/>
<id>101105b1717f536ca741f940033996302d4ef191</id>
<content type='text'>
Pull more vfs updates from Al Viro:
 "&gt;rename2() work from Miklos + current_time() from Deepa"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  fs: Replace current_fs_time() with current_time()
  fs: Replace CURRENT_TIME_SEC with current_time() for inode timestamps
  fs: Replace CURRENT_TIME with current_time() for inode timestamps
  fs: proc: Delete inode time initializations in proc_alloc_inode()
  vfs: Add current_time() api
  vfs: add note about i_op-&gt;rename changes to porting
  fs: rename "rename2" i_op to "rename"
  vfs: remove unused i_op-&gt;rename
  fs: make remaining filesystems use .rename2
  libfs: support RENAME_NOREPLACE in simple_rename()
  fs: support RENAME_NOREPLACE for local filesystems
  ncpfs: fix unused variable warning
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pull more vfs updates from Al Viro:
 "&gt;rename2() work from Miklos + current_time() from Deepa"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  fs: Replace current_fs_time() with current_time()
  fs: Replace CURRENT_TIME_SEC with current_time() for inode timestamps
  fs: Replace CURRENT_TIME with current_time() for inode timestamps
  fs: proc: Delete inode time initializations in proc_alloc_inode()
  vfs: Add current_time() api
  vfs: add note about i_op-&gt;rename changes to porting
  fs: rename "rename2" i_op to "rename"
  vfs: remove unused i_op-&gt;rename
  fs: make remaining filesystems use .rename2
  libfs: support RENAME_NOREPLACE in simple_rename()
  fs: support RENAME_NOREPLACE for local filesystems
  ncpfs: fix unused variable warning
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: Replace CURRENT_TIME with current_time() for inode timestamps</title>
<updated>2016-09-28T01:06:21+00:00</updated>
<author>
<name>Deepa Dinamani</name>
<email>deepa.kernel@gmail.com</email>
</author>
<published>2016-09-14T14:48:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=078cd8279e659989b103359bb22373cc79445bde'/>
<id>078cd8279e659989b103359bb22373cc79445bde</id>
<content type='text'>
CURRENT_TIME macro is not appropriate for filesystems as it
doesn't use the right granularity for filesystem timestamps.
Use current_time() instead.

CURRENT_TIME is also not y2038 safe.

This is also in preparation for the patch that transitions
vfs timestamps to use 64 bit time and hence make them
y2038 safe. As part of the effort current_time() will be
extended to do range checks. Hence, it is necessary for all
file system timestamps to use current_time(). Also,
current_time() will be transitioned along with vfs to be
y2038 safe.

Note that whenever a single call to current_time() is used
to change timestamps in different inodes, it is because they
share the same time granularity.

Signed-off-by: Deepa Dinamani &lt;deepa.kernel@gmail.com&gt;
Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Acked-by: Felipe Balbi &lt;balbi@kernel.org&gt;
Acked-by: Steven Whitehouse &lt;swhiteho@redhat.com&gt;
Acked-by: Ryusuke Konishi &lt;konishi.ryusuke@lab.ntt.co.jp&gt;
Acked-by: David Sterba &lt;dsterba@suse.com&gt;
Signed-off-by: Al Viro &lt;viro@zeniv.linux.org.uk&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CURRENT_TIME macro is not appropriate for filesystems as it
doesn't use the right granularity for filesystem timestamps.
Use current_time() instead.

CURRENT_TIME is also not y2038 safe.

This is also in preparation for the patch that transitions
vfs timestamps to use 64 bit time and hence make them
y2038 safe. As part of the effort current_time() will be
extended to do range checks. Hence, it is necessary for all
file system timestamps to use current_time(). Also,
current_time() will be transitioned along with vfs to be
y2038 safe.

Note that whenever a single call to current_time() is used
to change timestamps in different inodes, it is because they
share the same time granularity.

Signed-off-by: Deepa Dinamani &lt;deepa.kernel@gmail.com&gt;
Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Acked-by: Felipe Balbi &lt;balbi@kernel.org&gt;
Acked-by: Steven Whitehouse &lt;swhiteho@redhat.com&gt;
Acked-by: Ryusuke Konishi &lt;konishi.ryusuke@lab.ntt.co.jp&gt;
Acked-by: David Sterba &lt;dsterba@suse.com&gt;
Signed-off-by: Al Viro &lt;viro@zeniv.linux.org.uk&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "usb: gadget: NCM: Protect dev-&gt;port_usb using dev-&gt;lock"</title>
<updated>2016-09-19T09:05:43+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2016-09-19T09:05:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=3a383cc0b8cc33af188fe2062b6ba5a69af25fa7'/>
<id>3a383cc0b8cc33af188fe2062b6ba5a69af25fa7</id>
<content type='text'>
This reverts commit c9ffc78745f89e300fe704348dd8e6800acf4d18 as it was
reported to be broken.

Cc: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
Cc: Jim Baxter &lt;jim_baxter@mentor.com&gt;
Cc: Harish Jenny K N &lt;harish_kandiga@mentor.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit c9ffc78745f89e300fe704348dd8e6800acf4d18 as it was
reported to be broken.

Cc: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;
Cc: Jim Baxter &lt;jim_baxter@mentor.com&gt;
Cc: Harish Jenny K N &lt;harish_kandiga@mentor.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
