HADOOP-14905. Fix javadocs issues in Hadoop HDFS-NFS. Contributed by Mukul Kumar Singh.

This commit is contained in:
Anu Engineer 2017-09-23 12:12:12 -07:00
parent 1c4a798505
commit 11af907c64
1 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,8 @@ public static Nfs3FileAttributes getFileAttr(DFSClient client,
/**
* HDFS directory size is always zero. Try to return something meaningful
* here. Assume each child take 32bytes.
* @param childNum number of children of the directory
* @return total size of the directory
*/
public static long getDirSize(int childNum) {
return (childNum + 2) * 32;
@ -122,6 +124,9 @@ public static WccData createWccData(final WccAttr preOpAttr,
/**
* Send a write response to the netty network socket channel
* @param channel channel to which the buffer needs to be written
* @param out xdr object to be written to the channel
* @param xid transaction identifier
*/
public static void writeChannel(Channel channel, XDR out, int xid) {
if (channel == null) {