-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[rc.local]: Put variables into quotes in conditionals #361
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: marian-pritsak <marianp@mellanox.com>
Fixes #360 |
stcheng
pushed a commit
to stcheng/sonic-buildimage
that referenced
this pull request
Oct 30, 2018
sonic-utilities: Fixing traceback for show vlan brief (sonic-net#358) [show] Updating 'show vlan brief' to show tagging info (sonic-net#355) [ntp] show ntp may take 20 seconds due to DNS issue. (sonic-net#354) tacacs management vrf changes (sonic-net#346) [config]: Fix bug of losing data when setting admin status (sonic-net#361) Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
stcheng
pushed a commit
that referenced
this pull request
Oct 30, 2018
sonic-utilities: Fixing traceback for show vlan brief (#358) [show] Updating 'show vlan brief' to show tagging info (#355) [ntp] show ntp may take 20 seconds due to DNS issue. (#354) tacacs management vrf changes (#346) [config]: Fix bug of losing data when setting admin status (#361) Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
Kalimuthu-Velappan
pushed a commit
to Kalimuthu-Velappan/sonic-buildimage
that referenced
this pull request
Sep 12, 2019
…#361) Shall use mod_entry instead of set_entry when updating partial information in the configuration database. set_entry will delete the rest of the data associated with this entry. Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
madhanmellanox
pushed a commit
to madhanmellanox/sonic-buildimage
that referenced
this pull request
Mar 23, 2020
…c-net#361) * [Pfcwd]: Add pfcAclHandler to drop ingress packets by acl rules Signed-off-by: Sihui Han <sihan@microsoft.com> * Simple refactoring Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com> * Refactor AclTable Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com> * Refactor AclRule, PfcWdAclHandler will bind/unbind ACL tables Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com> * Fix ACL table/rule names, fix port oids in bind/unbind Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com> * Add function entries logs Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com>
dmytroxshevchuk
pushed a commit
to dmytroxshevchuk/sonic-buildimage
that referenced
this pull request
Aug 31, 2020
* Add option to generate current dep graph to saidump * Add log method entry
stephenxs
added a commit
to stephenxs/sonic-buildimage
that referenced
this pull request
Dec 3, 2020
swss: - [port_rates][rif_rates] Fix port_rates.lua (sonic-net#1520) - Improve the way of handling BUFFER_PG during PFC storm (sonic-net#1480) - [Orchagent] Vxlanorch and Portsorch changes for EVPN VXLAN (sonic-net#1264) - [sub intf] ecmp hardware convergence acceleration at parent port oper status changes (sonic-net#1492) - [dvs/copp] Adjust policer checks in VS tests for default COPP policers (sonic-net#1519) - Flush ARP/neighbor entry on FDB flush when port L2-L3 (sonic-net#1506) - [intfmgr]: Add GARP support (sonic-net#1503) swss-common: - [Dynamic buffer calc] Support dynamic buffer calculation (sonic-net#361) - README.md: Update build requirements (sonic-net#414) Signed-off-by: Stephen Sun <stephens@nvidia.com>
3 tasks
daall
pushed a commit
that referenced
this pull request
Dec 4, 2020
swss: - [port_rates][rif_rates] Fix port_rates.lua (#1520) - Improve the way of handling BUFFER_PG during PFC storm (#1480) - [Orchagent] Vxlanorch and Portsorch changes for EVPN VXLAN (#1264) - [sub intf] ecmp hardware convergence acceleration at parent port oper status changes (#1492) - [dvs/copp] Adjust policer checks in VS tests for default COPP policers (#1519) - Flush ARP/neighbor entry on FDB flush when port L2-L3 (#1506) - [intfmgr]: Add GARP support (#1503) swss-common: - [Dynamic buffer calc] Support dynamic buffer calculation (#361) - README.md: Update build requirements (#414) Signed-off-by: Stephen Sun <stephens@nvidia.com>
qiluo-msft
pushed a commit
that referenced
this pull request
Dec 13, 2020
**- Why I did it** To support dynamic buffer calculation. This PR also depends on the following PRs for sub modules - [sonic-swss: [buffermgr/bufferorch] Support dynamic buffer calculation #1338](sonic-net/sonic-swss#1338) - [sonic-swss-common: Dynamic buffer calculation #361](sonic-net/sonic-swss-common#361) - [sonic-utilities: Support dynamic buffer calculation #973](sonic-net/sonic-utilities#973) **- How I did it** 1. Introduce field `buffer_model` in `DEVICE_METADATA|localhost` to represent which buffer model is running in the system currently: - `dynamic` for the dynamic buffer calculation model - `traditional` for the traditional model in which the `pg_profile_lookup.ini` is used 2. Add the tables required for the feature: - ASIC_TABLE in platform/\<vendor\>/asic_table.j2 - PERIPHERAL_TABLE in platform/\<vendor\>/peripheral_table.j2 - PORT_PERIPHERAL_TABLE on a per-platform basis in device/\<vendor\>/\<platform\>/port_peripheral_config.j2 for each platform with gearbox installed. - DEFAULT_LOSSLESS_BUFFER_PARAMETER and LOSSLESS_TRAFFIC_PATTERN in files/build_templates/buffers_config.j2 - Add lossless PGs (3-4) for each port in files/build_templates/buffers_config.j2 3. Copy the newly introduced j2 files into the image and rendering them when the system starts 4. Update the CLI options for buffermgrd so that it can start with dynamic mode 5. Fetches the ASIC vendor name in orchagent: - fetch the vendor name when creates the docker and pass it as a docker environment variable - `buffermgrd` can use this passed-in variable 6. Clear buffer related tables from STATE_DB when swss docker starts 7. Update the src/sonic-config-engine/tests/sample_output/buffers-dell6100.json according to the buffer_config.j2 8. Remove buffer pool sizes for ingress pools and egress_lossy_pool Update the buffer settings for dynamic buffer calculation
santhosh-kt
pushed a commit
to santhosh-kt/sonic-buildimage
that referenced
this pull request
Feb 25, 2021
…t#6111) swss: - [port_rates][rif_rates] Fix port_rates.lua (sonic-net#1520) - Improve the way of handling BUFFER_PG during PFC storm (sonic-net#1480) - [Orchagent] Vxlanorch and Portsorch changes for EVPN VXLAN (sonic-net#1264) - [sub intf] ecmp hardware convergence acceleration at parent port oper status changes (sonic-net#1492) - [dvs/copp] Adjust policer checks in VS tests for default COPP policers (sonic-net#1519) - Flush ARP/neighbor entry on FDB flush when port L2-L3 (sonic-net#1506) - [intfmgr]: Add GARP support (sonic-net#1503) swss-common: - [Dynamic buffer calc] Support dynamic buffer calculation (sonic-net#361) - README.md: Update build requirements (sonic-net#414) Signed-off-by: Stephen Sun <stephens@nvidia.com>
yxieca
pushed a commit
that referenced
this pull request
May 6, 2023
… automatically (#14945) src/sonic-platform-common * c97af3c - (HEAD -> 202205, origin/202205) Modify sfputil show fwversion to include build version for active/inactive FW version fields (#367) (2 days ago) [mihirpat1] * 7705a20 - Adding electrical for 800G and 100G (#365) (2 days ago) [mihirpat1] * d0038fc - SFF-8472: Fix tx_disable_channel to avoid write to read-only bit (#364) (2 days ago) [mihirpat1] * 518a471 - fix get module hardware minor revision (#361) (2 days ago) [Qingxiao Ren]
mssonicbld
added a commit
that referenced
this pull request
Aug 30, 2023
… automatically (#16332) #### Why I did it src/sonic-platform-common ``` * 05cf5c1 - (HEAD -> 202211, origin/202211) Change Y cable simulator log level from error to warning due to false alarm (11 hours ago) [ShiyanWangMS] * 35ea290 - Update CMIS api's rendering max-duration (#375) (11 hours ago) [rajann] * 33bd498 - Retrieve FW version using CDB command for CMIS transceivers + handle single bank FW versioning (#372) (11 hours ago) [mihirpat1] * 2434362 - Render Media lane and Media assignment options info from Application Code (#368) (11 hours ago) [rajann] * 862674b - Modify sfputil show fwversion to include build version for active/inactive FW version fields (#367) (11 hours ago) [mihirpat1] * 8edfece - Adding electrical for 800G and 100G (#365) (11 hours ago) [mihirpat1] * 8a1debf - SFF-8472: Fix tx_disable_channel to avoid write to read-only bit (#364) (11 hours ago) [mihirpat1] * 223a231 - Update host electrical interface for 2x400G breakout cable (#363) (11 hours ago) [mihirpat1] * baabd8f - fix get module hardware minor revision (#361) (11 hours ago) [Qingxiao Ren] * 2ebabf5 - Prevent VDM dictionary related KeyError when a transceiver module is pulled while a bulk get method is interrogating said module (#360) (11 hours ago) [snider-nokia] * 1498ed6 - [CMIS] Add API to get module power up duration (#354) (11 hours ago) [ChiouRung Haung] * 1cae718 - Modify get_host_lane_assignment_option to return value based on application id (#352) (11 hours ago) [mihirpat1] ``` #### How I did it #### How to verify it #### Description for the changelog
mssonicbld
added a commit
that referenced
this pull request
Nov 17, 2023
…tomatically (#17208) #### Why I did it src/sonic-linux-kernel ``` * f086121 - (HEAD -> 202305, origin/202305) Intgerate HW-MGMT 7.0030.2008 Changes (#361) (12 hours ago) [Vivek] * 7551dd9 - arm64: Enable CONFIG_KEXEC_FILE (#360) (13 hours ago) [Pavan Naregundi] ``` #### How I did it #### How to verify it #### Description for the changelog
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Signed-off-by: marian-pritsak marianp@mellanox.com