lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fd5cf76f-48c3-4d73-9609-c13ccb622382@lunn.ch>
Date: Tue, 3 Dec 2024 02:51:59 +0100
From: Andrew Lunn <andrew@...n.ch>
To: "D. Wythe" <alibuda@...ux.alibaba.com>
Cc: John Ousterhout <ouster@...stanford.edu>, netdev@...r.kernel.org,
	linux-api@...r.kernel.org
Subject: Re: [PATCH net-next v2 11/12] net: homa: create homa_plumbing.c
 homa_utils.c

On Mon, Dec 02, 2024 at 11:51:48AM +0800, D. Wythe wrote:
> > +/**
> > + * homa_setsockopt() - Implements the getsockopt system call for Homa sockets.
> > + * @sk:      Socket on which the system call was invoked.
> > + * @level:   Level at which the operation should be handled; will always
> > + *           be IPPROTO_HOMA.
> > + * @optname: Identifies a particular setsockopt operation.
> > + * @optval:  Address in user space of information about the option.
> > + * @optlen:  Number of bytes of data at @optval.
> > + * Return:   0 on success, otherwise a negative errno.
> > + */
> > +int homa_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
> > +		    unsigned int optlen)
> > +{
> > +	struct homa_sock *hsk = homa_sk(sk);
> > +	struct homa_set_buf_args args;
> > +	int ret;
> > +
> > +	if (level != IPPROTO_HOMA || optname != SO_HOMA_SET_BUF ||
> > +	    optlen != sizeof(struct homa_set_buf_args))
> > +		return -EINVAL;
> 
> SO_HOMA_SET_BUF is a bit odd here, maybe HOMA_RCVBUF ? which also can be
> implemented in getsockopt.

Please trim the text when replying to just the needed context. With
pages and pages of useless quoted text it is easy to overlook your
comments.

	Andrew

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ